Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class Controller extends BaseController |
||
11 | { |
||
12 | use AuthorizesRequests, DispatchesJobs, ValidatesRequests; |
||
13 | |||
14 | /** |
||
15 | * Indicates wether the application operates in sharing mode. |
||
16 | * |
||
17 | * @var boolean |
||
18 | */ |
||
19 | protected $sharingMode = false; |
||
20 | |||
21 | |||
22 | /** |
||
23 | * Create a new controller instance. |
||
24 | */ |
||
25 | public function __construct() |
||
30 |