mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
35 lines
594 B
PHP
35 lines
594 B
PHP
<?php namespace App\Providers;
|
|
|
|
use Illuminate\Bus\Dispatcher;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
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.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
//
|
|
}
|
|
|
|
}
|