Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
11 | final class TurnPhaseExpirationProcess implements CommandHandler |
||
12 | { |
||
13 | /** @var Matches */ |
||
14 | private $matches; |
||
15 | /** @var Clock */ |
||
16 | private $clock; |
||
17 | /** @var EventBag */ |
||
18 | private $eventBag; |
||
19 | |||
20 | public function __construct( |
||
28 | } |
||
29 | |||
30 | public function handle(Command $command): void |
||
38 |