Owl\Providers\BusServiceProvider::boot PHP 메소드

boot() 공개 메소드

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