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