mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 11:20:39 -06:00
35 lines
615 B
PHP
35 lines
615 B
PHP
<?php namespace FireflyIII\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, 'FireflyIII\Commands', 'FireflyIII\Handlers\Commands'
|
|
);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Register any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
//
|
|
}
|
|
|
|
}
|