Skip to content

Commit ddf92f9

Browse files
author
Mark Kevin Que
committed
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!
1 parent 8eb9690 commit ddf92f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Providers/RouteServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ class RouteServiceProvider extends ServiceProvider {
2222
*/
2323
public function boot(Router $router)
2424
{
25-
parent::boot($router);
26-
2725
//
26+
27+
parent::boot($router);
2828
}
2929

3030
/**

0 commit comments

Comments
 (0)