Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
14 | 5 | public function __construct( string $name, string $nameMessageKey, array $parameterDefinitions, callable $presenterBuilder ) { |
|
15 | 5 | $this->name = $name; |
|
16 | 5 | $this->nameMessageKey = $nameMessageKey; |
|
17 | 5 | $this->parameterDefinitions = $parameterDefinitions; |
|
18 | 5 | $this->constructionFunction = $presenterBuilder; |
|
19 | 5 | } |
|
20 | |||
38 |