1 | <?php |
||
13 | class SendMultiple implements DefaultSender |
||
14 | { |
||
15 | /** |
||
16 | * @var array |
||
17 | */ |
||
18 | protected $infoNotifications = []; |
||
19 | |||
20 | /** |
||
21 | * @param $infoNotifications |
||
22 | */ |
||
23 | public function __construct($infoNotifications) |
||
27 | |||
28 | /** |
||
29 | * Send multiple notifications. |
||
30 | * |
||
31 | * @param StoreNotification $sender |
||
32 | * @return mixed |
||
33 | */ |
||
34 | public function send(StoreNotification $sender) |
||
38 | } |
||
39 |