threeClause::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php namespace norsys\score\composer\root\project\bsd;
2
3
use norsys\score\composer\{ root, type, license\bsd };
4
5
class threeClause extends root\project
6
{
7
	function __construct(root\name $name, root\part... $parts)
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...
8
	{
9
		parent::__construct($name, new bsd\threeClause, ... $parts);
10
	}
11
}
12