Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | 2 | public function __construct( |
|
18 | string $fieldName, |
||
19 | string $template, |
||
20 | array $options = [], |
||
21 | ?Closure $dataTransformer = null |
||
22 | ) { |
||
23 | 2 | $this->fieldName = $fieldName; |
|
24 | 2 | $this->template = $template; |
|
25 | 2 | $this->options = $options; |
|
26 | 2 | $this->dataTransformer = $dataTransformer; |
|
27 | 2 | } |
|
58 |