1 | <?php |
||
8 | class FlockChannel |
||
9 | { |
||
10 | /** |
||
11 | * Flock instance. |
||
12 | * |
||
13 | * @var Flock |
||
14 | */ |
||
15 | protected $flock; |
||
16 | |||
17 | /** |
||
18 | * FlockChannel constructor. |
||
19 | * |
||
20 | * @param Flock $flock |
||
21 | */ |
||
22 | 2 | public function __construct(Flock $flock) |
|
26 | |||
27 | /** |
||
28 | * Send the given notification. |
||
29 | * |
||
30 | * @param mixed $notifiable |
||
31 | * @param \Illuminate\Notifications\Notification $notification |
||
32 | * |
||
33 | * @throws \NotificationChannels\Flock\Exceptions\CouldNotSendNotification |
||
34 | */ |
||
35 | 2 | public function send($notifiable, Notification $notification) |
|
52 | } |
||
53 |
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.