| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 66.67% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 7 | class FormProcessReport implements FormProcessReportInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var array<string,mixed> |
||
| 11 | */ |
||
| 12 | protected array $results = []; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param array<string,mixed> $results |
||
| 16 | */ |
||
| 17 | 9 | public function __construct(array $results = []) |
|
| 20 | } |
||
| 21 | |||
| 22 | public function results(): array |
||
| 23 | { |
||
| 24 | return $this->results; |
||
| 25 | } |
||
| 26 | |||
| 27 | 3 | public function resultFor(string $process) |
|
| 30 | } |
||
| 31 | } |
||
| 32 |