Total Complexity | 2 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
20 | 4 | return $this->decoratedRunner->run(new class($command, $this->parameters) implements Command { |
|
21 | private Command $command; |
||
22 | private array $parameters; |
||
23 | |||
24 | public function __construct(Command $command, array $parameters) |
||
25 | { |
||
26 | 4 | $this->command = $command; |
|
27 | 4 | $this->parameters = $parameters; |
|
28 | } |
||
29 | |||
30 | public function __toString(): string |
||
33 | } |
||
34 | 4 | }); |
|
37 |