Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
24 | public function __construct(Properties $properties) |
||
25 | { |
||
26 | 4 | parent::__construct( |
|
27 | IdentifierSuffixer::getIdentifier('protectedProperties') |
||
28 | 4 | ); |
|
29 | 4 | ||
30 | $this->setVisibility(self::VISIBILITY_PRIVATE); |
||
31 | $this->setStatic(true); |
||
32 | 4 | $this->setDocBlock( |
|
33 | 4 | '@var string[][] declaring class name of defined protected properties, indexed by property name' |
|
34 | 4 | ); |
|
35 | 4 | $this->setDefaultValue($this->getMap($properties)); |
|
36 | } |
||
37 | 4 | ||
50 |