1 | <?php |
||
10 | class LineChannel |
||
11 | { |
||
12 | /** @var \LINE\LINEBot */ |
||
13 | protected $line; |
||
14 | |||
15 | /** |
||
16 | * @param \LINE\LINEBot $line |
||
17 | */ |
||
18 | public function __construct(LINEBot $line) |
||
22 | |||
23 | /** |
||
24 | * Send the given notification. |
||
25 | * |
||
26 | * @param mixed $notifiable |
||
27 | * @param \Illuminate\Notifications\Notification $notification |
||
28 | * |
||
29 | * @throws \NotificationChannels\Line\Exceptions\CouldNotSendNotification |
||
30 | */ |
||
31 | public function send($notifiable, Notification $notification) |
||
47 | } |
||
48 |
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.