1 | <?php |
||
8 | class SendingMessage |
||
9 | { |
||
10 | /** |
||
11 | * @var Notifiable |
||
12 | */ |
||
13 | protected $notifiable; |
||
14 | |||
15 | /** |
||
16 | * @var Notification |
||
17 | */ |
||
18 | protected $notification; |
||
19 | |||
20 | /** |
||
21 | * @param Notifiable $notifiable |
||
|
|||
22 | * @param Notification $notification |
||
23 | */ |
||
24 | public function __construct($notifiable, Notification $notification) |
||
30 | } |
||
31 |