Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php namespace Arcanesoft\Foundation\Http\Controllers\Admin\System; |
||
9 | class InformationController extends Controller |
||
10 | { |
||
11 | /* ----------------------------------------------------------------- |
||
12 | | Constructor |
||
13 | | ----------------------------------------------------------------- |
||
14 | */ |
||
15 | |||
16 | /** |
||
17 | * InformationController constructor. |
||
18 | */ |
||
19 | public function __construct() |
||
20 | { |
||
21 | parent::__construct(); |
||
22 | |||
23 | $this->setCurrentPage('foundation-system-information'); |
||
24 | $this->addBreadcrumbRoute('Information', 'admin::foundation.system.information.index'); |
||
25 | } |
||
26 | |||
27 | /* ----------------------------------------------------------------- |
||
28 | | Main Methods |
||
29 | | ----------------------------------------------------------------- |
||
30 | */ |
||
31 | |||
32 | public function index() |
||
37 | } |
||
38 | } |
||
39 |