This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
memberdb/app/Providers/BusServiceProvider.php

35 lines
600 B
PHP
Raw Normal View History

2016-10-14 04:06:12 +00:00
<?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()
{
//
}
}