Passed
Push — 2.6.0 ( ...f22176 )
by steve
18:56
created

IndexController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 4
dl 0
loc 8
rs 10
c 1
b 0
f 0
ccs 0
cts 4
cp 0

1 Method

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