1 | <?php |
||
8 | class NotificationSent |
||
9 | { |
||
10 | protected $notifiable; |
||
11 | |||
12 | protected $notification; |
||
13 | |||
14 | private $sentMessageInfo; |
||
15 | |||
16 | /** |
||
17 | * @param $notifiable |
||
18 | * @param \Illuminate\Notifications\Notification $notification |
||
19 | * @param SMSResponseDetails $sentMessageInfo |
||
20 | */ |
||
21 | public function __construct($notifiable, Notification $notification, SMSResponseDetails $sentMessageInfo) |
||
27 | } |
||
28 |