changeset 0 | 1afc9d2ab94d |
-1:000000000000 | 0:1afc9d2ab94d |
---|---|
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 } |