1 | <?php |
||
9 | class SipgateChannel |
||
10 | { |
||
11 | /** |
||
12 | * @var SipgateClient |
||
13 | */ |
||
14 | protected $client; |
||
15 | |||
16 | public function __construct(SipgateClient $client) |
||
20 | |||
21 | /** |
||
22 | * Send the given notification. |
||
23 | * |
||
24 | * @param mixed $notifiable |
||
25 | * @param Notification $notification |
||
26 | * |
||
27 | * @throws CouldNotSendNotification |
||
28 | */ |
||
29 | public function send($notifiable, Notification $notification) |
||
40 | |||
41 | /** |
||
42 | * @param SipgateMessage $message |
||
43 | * @param $notifiable |
||
44 | * @throws CouldNotSendNotification |
||
45 | */ |
||
46 | protected function addRecipient(SipgateMessage $message, $notifiable) |
||
60 | |||
61 | /** |
||
62 | * @param SipgateMessage $message |
||
63 | * @throws CouldNotSendNotification |
||
64 | */ |
||
65 | protected function addSmsId(SipgateMessage $message) |
||
79 | } |
||
80 |
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.