1 | <?php |
||
14 | class EvernoteChannel |
||
15 | { |
||
16 | /** @var Client */ |
||
17 | protected $client; |
||
18 | |||
19 | /** |
||
20 | * @param Client $client |
||
21 | */ |
||
22 | 2 | public function __construct(Client $client) |
|
26 | |||
27 | /** |
||
28 | * Send the given notification. |
||
29 | * |
||
30 | * @param mixed $notifiable |
||
31 | * @param \Illuminate\Notifications\Notification $notification |
||
32 | * |
||
33 | * @throws \NotificationChannels\Evernote\Exceptions\CouldNotSendNotification |
||
34 | */ |
||
35 | 2 | public function send($notifiable, Notification $notification) |
|
55 | |||
56 | /** |
||
57 | * @param array $message |
||
58 | * |
||
59 | * @return \Evernote\Model\Note |
||
60 | */ |
||
61 | 2 | protected function convertMessageToNote($message) |
|
81 | |||
82 | /** |
||
83 | * @param $message |
||
84 | * |
||
85 | * @return \Evernote\Model\HtmlNoteContent|\Evernote\Model\PlainTextNoteContent|null |
||
86 | */ |
||
87 | 2 | protected function getContent($message) |
|
103 | } |
||
104 |
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.