Completed
Push — master ( c2606f...ff2953 )
by Cheren
08:57
created

RootController::dashboard()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
c 1
b 1
f 0
dl 0
loc 3
rs 10
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
/**
3
 * CakeCMS Core
4
 *
5
 * This file is part of the of the simple cms based on CakePHP 3.
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 *
9
 * @package   Core
10
 * @license   MIT
11
 * @copyright MIT License http://www.opensource.org/licenses/mit-license.php
12
 * @link      https://github.com/CakeCMS/Core".
13
 * @author    Sergey Kalistratov <[email protected]>
14
 */
15
16
namespace Core\Controller\Admin;
17
18
/**
19
 * Class RootController
20
 *
21
 * @package Core\Controller\Admin
22
 */
23
class RootController extends AppController
24
{
25
26
    /**
27
     * Dashboard action.
28
     *
29
     * @return void
30
     */
31
    public function dashboard()
32
    {
33
    }
34
}
35