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

IndexController::actionIndex()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
dl 0
loc 4
rs 10
c 1
b 0
f 0
cc 1
nc 1
nop 0
ccs 0
cts 4
cp 0
crap 2
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