Owl\Providers\BusServiceProvider::boot PHP Method

boot() public method

Bootstrap any application services.
public boot ( Dispatcher $dispatcher ) : void
$dispatcher Illuminate\Bus\Dispatcher
return void
    public function boot(Dispatcher $dispatcher)
    {
        $dispatcher->mapUsing(function ($command) {
            return Dispatcher::simpleMapping($command, 'Owl\\Commands', 'Owl\\Handlers\\Commands');
        });
    }
BusServiceProvider