| 1 | <?php |
||
| 8 | class ClickatellChannel |
||
| 9 | { |
||
| 10 | /** @var ClickatellClient */ |
||
| 11 | protected $clickatell; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @param ClickatellClient $clickatell |
||
| 15 | */ |
||
| 16 | public function __construct(ClickatellClient $clickatell) |
||
| 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) |
||
| 43 | } |
||
| 44 |
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.