diff options
author | Camil Staps | 2015-02-21 13:45:31 +0100 |
---|---|---|
committer | Camil Staps | 2015-02-21 13:45:31 +0100 |
commit | 1608adfa7bfbf027bddffe4051637bf65ce03622 (patch) | |
tree | 32bf7e57e2cb0b015a1a479e5bd2deb2664e8948 /src/controllers/BaseController.php | |
parent | added migrations, created basic app relying on dingo (diff) |
Basic controllers and authentication
Diffstat (limited to 'src/controllers/BaseController.php')
-rw-r--r-- | src/controllers/BaseController.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/controllers/BaseController.php b/src/controllers/BaseController.php new file mode 100644 index 0000000..2cc52c5 --- /dev/null +++ b/src/controllers/BaseController.php @@ -0,0 +1,10 @@ +<?php +namespace CamilStaps\BotleaguesApi; + +use \Dingo\Api\Routing\ControllerTrait; + +class BaseController extends \Illuminate\Routing\Controller { + + use ControllerTrait; + +}
\ No newline at end of file |