| 1 | <?php |
||
| 8 | class SmsapiChannel |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var SmsapiClient |
||
| 12 | */ |
||
| 13 | protected $client; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param SmsapiClient $client |
||
| 17 | */ |
||
| 18 | public function __construct(SmsapiClient $client) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Send the given notification. |
||
| 25 | * |
||
| 26 | * @param mixed $notifiable |
||
| 27 | * @param Notification $notification |
||
| 28 | * @return StatusResponse |
||
| 29 | */ |
||
| 30 | public function send($notifiable, Notification $notification) |
||
| 45 | } |
||
| 46 |
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.