Total Complexity | 3 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
15 | final class BeforeHandling implements Handler |
||
16 | { |
||
17 | private $middleware; |
||
18 | private $handler; |
||
19 | |||
20 | private function __construct(Middleware $middleware, Handler $handler) |
||
24 | } |
||
25 | |||
26 | public static function invoke( |
||
31 | } |
||
32 | |||
33 | /** @inheritdoc */ |
||
34 | public function handle(object $command): void |
||
40 |