Skip to content

Commit

Permalink
Improved Api Base Controller
Browse files Browse the repository at this point in the history
  • Loading branch information
libern committed Aug 29, 2016
1 parent 2e34b2b commit f598171
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/Someline/Base/Api/Controllers/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,16 @@


use Dingo\Api\Routing\Helpers;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Routing\Controller as BaseController;
use Someline\Api\Foundation\Validation\ValidatesRequests;
use Someline\AuthUserHelpers;
use Someline\Base\Http\Controllers\Controller as BaseController;
use Someline\Auth\AuthUserHelpers;

abstract class Controller extends BaseController
{
use ValidatesRequests;
use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
use AuthUserHelpers;
use Helpers;

}

0 comments on commit f598171

Please sign in to comment.