Renaming folders.

This commit is contained in:
Taylor Otwell
2014-08-18 23:42:49 -05:00
parent 79bcb450dd
commit 3ffbb5d6ba
18 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<?php namespace Providers;
use Illuminate\Routing\RouteServiceProvider as ServiceProvider;
class RouteServiceProvider extends ServiceProvider {
/**
* Called before routes are registered.
*
* Register any model bindings or pattern based filters.
*
* @return void
*/
public function before()
{
//
}
/**
* Define the routes for the application.
*
* @return void
*/
public function map()
{
$this->app->booted(function()
{
require app('path').'/routes.php';
});
}
}