Passed
Push — master ( 4d0f3d...b95030 )
by Jean-Christophe
02:31
created

TestControllerInitialize::initialize()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace tests\unit\controllers\controllers;
4
5
class TestControllerInitialize extends TestController {
6
7
	public function initialize() {
8
		parent::initialize ();
9
		echo 'initialize!-';
10
	}
11
12
	public function finalize() {
13
		parent::finalize ();
14
		echo '-finalize!';
15
	}
16
}
17
18