Browse Source

Use $this instead of parent.

Signed-off-by: crynobone <crynobone@gmail.com>
crynobone 9 years ago
parent
commit
50357d8bab
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Providers/AuthServiceProvider.php

+ 1 - 1
app/Providers/AuthServiceProvider.php

@@ -24,7 +24,7 @@ class AuthServiceProvider extends ServiceProvider
      */
     public function boot(GateContract $gate)
     {
-        parent::registerPolicies($gate);
+        $this->registerPolicies($gate);
 
         //
     }