mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 21:07:30 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			695 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			695 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Providers;
 | 
						|
 | 
						|
use Illuminate\Bus\Dispatcher;
 | 
						|
use Illuminate\Support\ServiceProvider;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class BusServiceProvider.
 | 
						|
 */
 | 
						|
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, 'App\Commands', 'App\Handlers\Commands'
 | 
						|
            );
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Register any application services.
 | 
						|
     */
 | 
						|
    public function register()
 | 
						|
    {
 | 
						|
    }
 | 
						|
}
 |