1 | <?php |
||
9 | class ZendeskChannel |
||
10 | { |
||
11 | /** @var HttpClient */ |
||
12 | protected $client; |
||
13 | |||
14 | /** @param HttpClient $client */ |
||
15 | 1 | public function __construct(HttpClient $client) |
|
19 | |||
20 | /** |
||
21 | * Send the given notification. |
||
22 | * |
||
23 | * @param mixed $notifiable |
||
24 | * @param \Illuminate\Notifications\Notification $notification |
||
25 | * |
||
26 | * @throws \NotificationChannels\Zendesk\Exceptions\InvalidConfiguration |
||
27 | * @throws \NotificationChannels\Zendesk\Exceptions\CouldNotSendNotification |
||
28 | */ |
||
29 | 1 | public function send($notifiable, Notification $notification) |
|
39 | } |
||
40 |
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.