1 | <?php |
||
7 | class AwsPinpointChannel |
||
8 | { |
||
9 | /** |
||
10 | * @var \NotificationChannels\AwsPinpoint\AwsPinpointClient |
||
11 | */ |
||
12 | protected $client; |
||
13 | |||
14 | /** |
||
15 | * Create a AwsPinpointChannel instance. |
||
16 | * |
||
17 | * @param \NotificationChannels\AwsPinpoint\AwsPinpointClient $client |
||
18 | */ |
||
19 | public function __construct(AwsPinpointClient $client) |
||
23 | |||
24 | /** |
||
25 | * Send the given notification. |
||
26 | * |
||
27 | * @param mixed $notifiable |
||
28 | * @param \Illuminate\Notifications\Notification $notification |
||
29 | */ |
||
30 | public function send($notifiable, Notification $notification) |
||
44 | } |
||
45 |
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.