| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 10 | final class ProposalAcceptanceNotifier implements EventHandler |
||
| 11 | { |
||
| 12 | private $matchProposals; |
||
| 13 | |||
| 14 | public function __construct(MatchProposals $matchProposals) |
||
| 15 | { |
||
| 16 | $this->matchProposals = $matchProposals; |
||
| 17 | } |
||
| 18 | |||
| 19 | public function events(): iterable |
||
| 22 | } |
||
| 23 | |||
| 24 | public function handle(DomainEvent $event): void |
||
| 31 |