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