1 | <?php |
||
11 | class ApnChannel |
||
12 | { |
||
13 | /** |
||
14 | * The APNS client. |
||
15 | * |
||
16 | * @var \Pushok\Client |
||
17 | */ |
||
18 | protected $client; |
||
19 | |||
20 | /** |
||
21 | * The event dispatcher. |
||
22 | * |
||
23 | * @var \Illuminate\Contracts\Events\Dispatcher |
||
24 | */ |
||
25 | protected $events; |
||
26 | |||
27 | /** |
||
28 | * Create a new channel instance. |
||
29 | * |
||
30 | * @param \Pushok\Client $client |
||
31 | * @param \Illuminate\Contracts\Events\Dispatcher $events |
||
32 | */ |
||
33 | public function __construct(Client $client, Dispatcher $events) |
||
38 | |||
39 | /** |
||
40 | * Send the notification to Apple Push Notification Service. |
||
41 | * |
||
42 | * @param mixed $notifiable |
||
43 | * @param \Illuminate\Notifications\Notification $notification |
||
44 | * @return array|void |
||
45 | */ |
||
46 | public function send($notifiable, Notification $notification) |
||
66 | |||
67 | /** |
||
68 | 3 | * Send the message to the given tokens through the given client. |
|
69 | * |
||
70 | 3 | * @param \Pushok\Client $client |
|
71 | 3 | * @param \NotificationChannels\Apn\ApnMessage $message |
|
72 | 3 | * @param array $tokens |
|
73 | 3 | * @return array |
|
74 | */ |
||
75 | protected function sendNotifications(Client $client, ApnMessage $message, array $tokens) |
||
83 | |||
84 | /** |
||
85 | * Dispatch failed events for notifications that weren't delivered. |
||
86 | * |
||
87 | * @param mixed $notifiable |
||
88 | * @param \Illuminate\Notifications\Notification $notification |
||
89 | 3 | * @param array $responses |
|
90 | * @return void |
||
91 | 3 | */ |
|
92 | 3 | protected function dispatchEvents($notifiable, $notification, array $responses) |
|
108 | } |
||
109 |
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.