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 | 2 | ||
57 | 2 | /** |
|
58 | 2 | * @param array $message |
|
59 | * |
||
60 | 2 | * @return \Evernote\Model\Note |
|
61 | 2 | */ |
|
62 | 2 | protected function convertMessageToNote($message) |
|
82 | |||
83 | |||
84 | /** |
||
85 | * @param $message |
||
86 | * @return \Evernote\Model\HtmlNoteContent|\Evernote\Model\PlainTextNoteContent|null |
||
87 | */ |
||
88 | protected function getContent($message) |
||
104 | } |
||
105 |
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.