mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-11-04 05:15:39 +00:00 
			
		
		
		
	
		
			
	
	
		
			18 lines
		
	
	
		
			325 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			18 lines
		
	
	
		
			325 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| 
								 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								namespace FireflyIII\Providers;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								use Illuminate\Support\ServiceProvider;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class FireflyServiceProvider extends ServiceProvider
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    public function register()
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        $this->app->bind(
							 | 
						||
| 
								 | 
							
								            'preferences', function () {
							 | 
						||
| 
								 | 
							
								            return new \FireflyIII\Support\Preferences;
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								        );
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								}
							 |