Browse Source

base controller doesn't have to be abstract.

Taylor Otwell 9 years ago
parent
commit
4eb28ba069
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Http/Controllers/Controller.php

+ 1 - 1
app/Http/Controllers/Controller.php

@@ -7,7 +7,7 @@ use Illuminate\Routing\Controller as BaseController;
 use Illuminate\Foundation\Validation\ValidatesRequests;
 use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
 
-abstract class Controller extends BaseController
+class Controller extends BaseController
 {
     use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
 }