Total Complexity | 5 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | final class CommandInterceptor implements MethodInterceptor |
||
15 | { |
||
16 | /** @param CommandInterface[] $commands */ |
||
17 | public function __construct( |
||
18 | #[Commands] |
||
19 | private readonly array $commands, |
||
20 | ) { |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * {@inheritDoc} |
||
25 | * |
||
26 | 13 | * @throws ReturnValueIsNotResourceObjectException |
|
27 | */ |
||
28 | 13 | public function invoke(MethodInvocation $invocation) |
|
45 | } |
||
46 | } |
||
47 |