Browse Source

Defining global patterns before parent boot function call

Kindly check if my assumption is correct? In relation to this issue, http://stackoverflow.com/questions/28251154/laravel-5-0-dev-defining-global-patterns-is-not-working/29567578#29567578 and https://laracasts.com/discuss/channels/general-discussion/route-global-pattern-in-routeserviceprovider-not-working-in-laravel-5?page=1

or this could be a different issue/bug

thanks!
Mark Kevin Que 10 years ago
parent
commit
ddf92f9513
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/Providers/RouteServiceProvider.php

+ 2 - 2
app/Providers/RouteServiceProvider.php

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