| author | ymh <ymh.work@gmail.com> |
| Wed, 01 Apr 2015 15:31:12 +0200 | |
| changeset 0 | 1afc9d2ab94d |
| permissions | -rw-r--r-- |
| 0 | 1 |
<?php namespace TestCAS\Http\Controllers; |
2 |
||
3 |
use Illuminate\Foundation\Bus\DispatchesCommands; |
|
4 |
use Illuminate\Routing\Controller as BaseController; |
|
5 |
use Illuminate\Foundation\Validation\ValidatesRequests; |
|
6 |
||
7 |
abstract class Controller extends BaseController |
|
8 |
{ |
|
9 |
use DispatchesCommands, ValidatesRequests; |
|
10 |
} |