1 | <?php |
||
8 | class FacebookPosterChannel |
||
9 | { |
||
10 | /** |
||
11 | * The Facebook client. |
||
12 | * |
||
13 | * @var \Facebook\Facebook |
||
14 | */ |
||
15 | protected $facebook; |
||
16 | |||
17 | /** |
||
18 | * Create a new channel instance. |
||
19 | * |
||
20 | * @param \Facebook\Facebook $facebook |
||
21 | */ |
||
22 | 4 | public function __construct(Facebook $facebook) |
|
26 | |||
27 | /** |
||
28 | * Send the given notification. |
||
29 | * |
||
30 | * @param mixed $notifiable |
||
31 | * @param \Illuminate\Notifications\Notification $notification |
||
32 | */ |
||
33 | 4 | public function send($notifiable, Notification $notification) |
|
49 | |||
50 | /** |
||
51 | * Use per user settings instead of default ones. |
||
52 | * |
||
53 | * @param array $config |
||
54 | * @return void |
||
55 | */ |
||
56 | protected function switchSettings(array $config) |
||
60 | } |
||
61 |
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.