mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-28 03:34:32 -06:00
43 lines
829 B
PHP
43 lines
829 B
PHP
<?php namespace FireflyIII\Providers;
|
|
|
|
use Illuminate\Bus\Dispatcher;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
/**
|
|
* Class BusServiceProvider
|
|
*
|
|
* @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()
|
|
{
|
|
//
|
|
}
|
|
|
|
}
|