mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			855 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			855 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php namespace FireflyIII\Providers;
 | |
| 
 | |
| use Illuminate\Bus\Dispatcher;
 | |
| use Illuminate\Support\ServiceProvider;
 | |
| 
 | |
| /**
 | |
|  * Class BusServiceProvider
 | |
|  *
 | |
|  * @codeCoverageIgnore
 | |
|  *
 | |
|  * @package FireflyIII\Providers
 | |
|  */
 | |
| class BusServiceProvider extends ServiceProvider
 | |
| {
 | |
| 
 | |
|     /**
 | |
|      * Bootstrap any application services.
 | |
|      *
 | |
|      * @param  \Illuminate\Bus\Dispatcher $dispatcher
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function boot(Dispatcher $dispatcher)
 | |
|     {
 | |
|         $dispatcher->mapUsing(
 | |
|             function ($command) {
 | |
|                 return Dispatcher::simpleMapping(
 | |
|                     $command, 'FireflyIII\Commands', 'FireflyIII\Handlers\Commands'
 | |
|                 );
 | |
|             }
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Register any application services.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function register()
 | |
|     {
 | |
|         //
 | |
|     }
 | |
| 
 | |
| }
 |