1 | <?php |
||
12 | class FcmChannel |
||
13 | { |
||
14 | const MAX_TOKEN_PER_REQUEST = 500; |
||
15 | |||
16 | /** |
||
17 | * @var Client |
||
18 | */ |
||
19 | protected $client; |
||
20 | |||
21 | /** |
||
22 | * Send the given notification. |
||
23 | * |
||
24 | * @param mixed $notifiable |
||
25 | * @param Notification $notification |
||
26 | * |
||
27 | * @return array |
||
28 | * @throws CouldNotSendNotification |
||
29 | */ |
||
30 | public function send($notifiable, Notification $notification) |
||
55 | |||
56 | /** |
||
57 | * @param $fcmMessage |
||
58 | * @param $tokens |
||
59 | * |
||
60 | * @return mixed |
||
61 | * @throws CouldNotSendNotification |
||
62 | */ |
||
63 | protected function sendToFcmMulticast($fcmMessage, $tokens) |
||
71 | } |
||
72 |
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.