| 1 | <?php |
||
| 9 | class SmsChannel |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Send the given notification. |
||
| 13 | * |
||
| 14 | * @param $notifiable |
||
| 15 | * @param Notification $notification |
||
| 16 | * @return mixed |
||
| 17 | * @throws \Exception |
||
| 18 | */ |
||
| 19 | public function send($notifiable, Notification $notification) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Validate message. |
||
| 37 | * |
||
| 38 | * @param $message |
||
| 39 | * @throws \Exception |
||
| 40 | */ |
||
| 41 | private function validate($message) |
||
| 53 | } |
||
| 54 |
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.