app::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 7
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php namespace norsys\score\composer\fs\path\symfony;
2
3
use norsys\score\composer\fs\path\any as path;
4
use norsys\score\fs\path\container\fifo as container;
5
use norsys\score\composer\fs\path\filename\any as filename;
6
use norsys\score\composer\fs\path\fork;
7
8
class app extends fork
9
{
10
	function __construct()
0 ignored issues
show
Best Practice introduced by
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
11
	{
12
		parent::__construct(
13
			new path(new filename('app')),
14
			new container(
15
				new path(new filename('AppKernel.php')),
16
				new path(new filename('AppCache.php'))
17
			)
18
		);
19
	}
20
}
21