Passed
Pull Request — develop ( #58 )
by
unknown
32:22 queued 14:42
created

SiteController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
eloc 2
dl 0
loc 5
rs 10
c 0
b 0
f 0
ccs 0
cts 3
cp 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A actionIndex() 0 3 1
1
<?php
2
/**
3
 * @link http://www.newicon.net/neon
4
 * @copyright Copyright (c) 21/09/2016 Newicon Ltd
5
 * @license http://www.newicon.net/neon/license/
6
 */
7
namespace neon\cms\controllers;
8
9
use \neon\core\web\AdminController;
10
11
class SiteController extends AdminController
12
{
13
	public function actionIndex()
14
	{
15
		return $this->render('index');
16
	}
17
}
18