Completed
Push — master ( 71c1d9...f78dbb )
by ARCANEDEV
03:55
created

Controller   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 16
ccs 0
cts 5
cp 0
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
1
<?php namespace Arcanesoft\Foundation\Http\Controllers\Admin\System;
2
3
use Arcanesoft\Foundation\Http\Controllers\Admin\Controller as BaseController;
4
5
/**
6
 * Class     Controller
7
 *
8
 * @package  Arcanesoft\Foundation\Http\Controllers\Admin\System
9
 * @author   ARCANEDEV <[email protected]>
10
 */
11
abstract class Controller extends BaseController
12
{
13
    /* ------------------------------------------------------------------------------------------------
14
     |  Main Functions
15
     | ------------------------------------------------------------------------------------------------
16
     */
17
    /**
18
     * Controller constructor.
19
     */
20
    public function __construct()
21
    {
22
        parent::__construct();
23
24
        $this->addBreadcrumbRoute('System', 'admin::foundation.system.information.index');
25
    }
26
}
27