mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace FireflyIII\Providers;
 | |
| 
 | |
| use Auth;
 | |
| use FireflyIII\Exceptions\FireflyException;
 | |
| use Illuminate\Foundation\Application;
 | |
| use Illuminate\Support\ServiceProvider;
 | |
| 
 | |
| /**
 | |
|  * Class JournalServiceProvider
 | |
|  *
 | |
|  * @package FireflyIII\Providers
 | |
|  */
 | |
| class JournalServiceProvider extends ServiceProvider
 | |
| {
 | |
|     /**
 | |
|      * Bootstrap the application services.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function boot()
 | |
|     {
 | |
|         //
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Register the application services.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function register()
 | |
|     {
 | |
|         $this->app->bind(
 | |
|             'FireflyIII\Repositories\Journal\JournalRepositoryInterface',
 | |
|             function (Application $app, array $arguments) {
 | |
|                 if (!isset($arguments[0]) && Auth::check()) {
 | |
|                     return app('FireflyIII\Repositories\Journal\JournalRepository', [Auth::user()]);
 | |
|                 } else {
 | |
|                     if (!isset($arguments[0]) && !Auth::check()) {
 | |
|                         throw new FireflyException('There is no user present.');
 | |
|                     }
 | |
|                 }
 | |
| 
 | |
|                 return app('FireflyIII\Repositories\Journal\JournalRepository', $arguments);
 | |
|             }
 | |
|         );
 | |
|     }
 | |
| }
 |