Merge pull request #3338 from makque/patch-1

Defining global patterns before parent boot function call
This commit is contained in:
Taylor Otwell 2015-04-10 22:15:10 -05:00
commit a9a59c1a86
1 changed files with 2 additions and 2 deletions

View File

@ -22,9 +22,9 @@ class RouteServiceProvider extends ServiceProvider {
*/
public function boot(Router $router)
{
parent::boot($router);
//
parent::boot($router);
}
/**