base controller doesn't have to be abstract.

This commit is contained in:
Taylor Otwell 2015-12-02 08:21:23 -06:00
parent b685435ecc
commit 4eb28ba069
1 changed files with 1 additions and 1 deletions

View File

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