Total Complexity | 3 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class LoggedErrorExecutor implements ExecutorInterface |
||
12 | { |
||
13 | 3 | public function __construct( |
|
14 | private readonly ExecutorInterface $decorated, |
||
15 | private readonly LoggerInterface $logger |
||
16 | ) { |
||
17 | 3 | } |
|
18 | |||
19 | 2 | public function execute(RequestInterface $request, ExpectationCollection $expectations): void |
|
27 | 1 | ); |
|
28 | } |
||
31 |