1 | <?php |
||
11 | class MailLiftChannel |
||
12 | { |
||
13 | const API_ENDPOINT = 'https://api.maillift.com/2016-04-21/letter/'; |
||
14 | |||
15 | /** @var Client */ |
||
16 | protected $client; |
||
17 | |||
18 | /** |
||
19 | * @param Client $client |
||
20 | */ |
||
21 | 3 | public function __construct(Client $client) |
|
25 | |||
26 | /** |
||
27 | * Send the given notification. |
||
28 | * |
||
29 | * @param mixed $notifiable |
||
30 | * @param \Illuminate\Notifications\Notification $notification |
||
31 | * |
||
32 | * @throws \NotificationChannels\MailLift\Exceptions\InvalidConfiguration |
||
33 | * @throws \NotificationChannels\MailLift\Exceptions\CouldNotSendNotification |
||
34 | */ |
||
35 | 3 | public function send($notifiable, Notification $notification) |
|
59 | } |
||
60 |
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.