Total Complexity | 3 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
7 | trait InputDataTrait |
||
8 | { |
||
9 | private ?InputDataInterface $inputData = null; |
||
10 | |||
11 | 500 | final public function inputData(InputDataInterface $inputData): static |
|
12 | { |
||
13 | 500 | $new = clone $this; |
|
14 | 500 | $new->inputData = $inputData; |
|
15 | 500 | return $new; |
|
16 | } |
||
17 | |||
18 | 598 | final protected function getInputData(): InputDataInterface |
|
25 | } |
||
26 | } |
||
27 |