1 | <?php |
||
20 | class MarkAuthorizationCodeAsUsedHandler |
||
21 | { |
||
22 | private $authorizationCodeRepository; |
||
23 | private $eventBus; |
||
24 | |||
25 | public function __construct(AuthorizationCodeRepository $authorizationCodeRepository, EventBus $eventBus) |
||
30 | |||
31 | public function handle(MarkAuthorizationCodeAsUsed $command): void |
||
45 | } |
||
46 |