for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Distilleries\Expendable;
use Distilleries\Expendable\Http\Router\Router;
use Illuminate\Routing\RoutingServiceProvider;
class ExpendableRoutingServiceProvider extends RoutingServiceProvider
{
/**
* Register the router instance.
*
* @return void
*/
protected function registerRouter()
$this->app['router'] = $this->app->share(function ($app) {
return new Router($app['events'], $app);
});
}