| 1 | <?php |
||
| 11 | class MultipleSender implements SenderContract |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var array |
||
| 15 | */ |
||
| 16 | protected $notifications; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var \Illuminate\Database\DatabaseManager |
||
| 20 | */ |
||
| 21 | protected $database; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * MultipleSender constructor. |
||
| 25 | * |
||
| 26 | * @param array $notifications |
||
| 27 | */ |
||
| 28 | public function __construct(array $notifications) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Send all notifications. |
||
| 36 | * |
||
| 37 | * @param SenderManagerContract $sender |
||
| 38 | * @return bool |
||
| 39 | */ |
||
| 40 | public function send(SenderManagerContract $sender) |
||
| 60 | } |
||
| 61 |