Skip to content

Commit

Permalink
Merge pull request #154 from cretueusebiu/3.4
Browse files Browse the repository at this point in the history
Fix authorize middleware
  • Loading branch information
crynobone committed Feb 5, 2017
2 parents e305827 + 1e73728 commit 5fea1f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class Kernel extends \Illuminate\Foundation\Http\Kernel
'auth' => \Illuminate\Auth\Middleware\Authenticate::class,
'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class,
'can' => \Illuminate\Foundation\Http\Middleware\Authorize::class,
'can' => \Illuminate\Auth\Middleware\Authorize::class,
'guest' => Middleware\RedirectIfAuthenticated::class,
'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
];
Expand Down

0 comments on commit 5fea1f3

Please sign in to comment.