1 | <?php |
||
11 | class TwilioChannel |
||
12 | { |
||
13 | /** |
||
14 | * @var Twilio |
||
15 | */ |
||
16 | protected $twilio; |
||
17 | |||
18 | /** |
||
19 | * @var Dispatcher |
||
20 | */ |
||
21 | protected $events; |
||
22 | |||
23 | /** |
||
24 | * TwilioChannel constructor. |
||
25 | * |
||
26 | * @param Twilio $twilio |
||
27 | * @param Dispatcher $events |
||
28 | */ |
||
29 | 13 | public function __construct(Twilio $twilio, Dispatcher $events) |
|
34 | |||
35 | /** |
||
36 | * Send the given notification. |
||
37 | * |
||
38 | * @param mixed $notifiable |
||
39 | * @param Notification $notification |
||
40 | * |
||
41 | * @return mixed |
||
42 | * @throws Exception |
||
43 | */ |
||
44 | 13 | public function send($notifiable, Notification $notification) |
|
77 | |||
78 | 3 | /** |
|
79 | * Get the address to send a notification to. |
||
80 | * |
||
81 | * @param mixed $notifiable |
||
82 | * |
||
83 | * @return mixed |
||
84 | * @throws CouldNotSendNotification |
||
85 | */ |
||
86 | protected function getTo($notifiable) |
||
97 | |||
98 | /** |
||
99 | 1 | * Get the alphanumeric sender. |
|
100 | * |
||
101 | * @param $notifiable |
||
102 | * |
||
103 | * @return mixed|null |
||
104 | * @throws CouldNotSendNotification |
||
105 | */ |
||
106 | protected function canReceiveAlphanumericSender($notifiable) |
||
111 | } |
||
112 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.