| 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 | 499 | final public function inputData(InputDataInterface $inputData): static |
|
| 12 | { |
||
| 13 | 499 | $new = clone $this; |
|
| 14 | 499 | $new->inputData = $inputData; |
|
| 15 | 499 | return $new; |
|
| 16 | } |
||
| 17 | |||
| 18 | 597 | final protected function getInputData(): InputDataInterface |
|
| 25 | } |
||
| 26 | } |
||
| 27 |