| 1 | <?php |
||
| 8 | class SMS77Channel |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var SMS77 |
||
| 12 | */ |
||
| 13 | protected $sms77; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param SMS77 $sms77 |
||
| 17 | */ |
||
| 18 | public function __construct(SMS77 $sms77) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Send the given notification. |
||
| 25 | * |
||
| 26 | * @param mixed $notifiable |
||
| 27 | * @param \Illuminate\Notifications\Notification $notification |
||
| 28 | * |
||
| 29 | * @throws \NotificationChannels\SMS77\Exceptions\CouldNotSendNotification |
||
| 30 | */ |
||
| 31 | public function send($notifiable, Notification $notification) |
||
| 62 | } |
||
| 63 |
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.