Controller
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 8
c 0
b 0
f 0
1
<?php namespace Arcanesoft\Pages\Bases;
2
3
use Arcanedev\Support\Bases\Controller as BaseController;
4
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
5
use Illuminate\Foundation\Bus\DispatchesJobs;
6
use Illuminate\Foundation\Validation\ValidatesRequests;
7
8
/**
9
 * Class     Controller
10
 *
11
 * @package  Arcanesoft\Pages\Bases
12
 * @author   ARCANEDEV <[email protected]>
13
 */
14
class Controller extends BaseController
0 ignored issues
show
Deprecated Code introduced by
The class Arcanedev\Support\Bases\Controller has been deprecated with message: Use `Arcanedev\Support\Http\Controller` instead.

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
15
{
16
    /* ------------------------------------------------------------------------------------------------
17
     |  Traits
18
     | ------------------------------------------------------------------------------------------------
19
     */
20
    use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
21
}
22