1 | <?php |
||
6 | class LockAwareSendNotification extends SendNotification |
||
7 | { |
||
8 | /** |
||
9 | * @var NotificationRepository |
||
10 | */ |
||
11 | private $notificationRepository; |
||
12 | |||
13 | /** |
||
14 | * @param GatewayRegistry $gatewayRegistry |
||
15 | * @param NotificationRepository $notificationRepository |
||
16 | */ |
||
17 | 2 | public function __construct( |
|
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | * @throws NotificationLockedException |
||
28 | */ |
||
29 | 2 | public function execute(Notification $notification): void |
|
40 | } |
||
41 |