| 1 | <?php |
||
| 7 | class PushoverChannel |
||
| 8 | { |
||
| 9 | /** @var Pushover */ |
||
| 10 | protected $pushover; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Create a new Pushover channel instance. |
||
| 14 | * |
||
| 15 | * @param Pushover $pushover |
||
| 16 | */ |
||
| 17 | public function __construct(Pushover $pushover) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Send the given notification. |
||
| 24 | * |
||
| 25 | * @param mixed $notifiable |
||
| 26 | * @param \Illuminate\Notifications\Notification $notification |
||
| 27 | * |
||
| 28 | * @throws \NotificationChannels\Pushover\Exceptions\CouldNotSendNotification |
||
| 29 | */ |
||
| 30 | public function send($notifiable, Notification $notification) |
||
| 51 | } |
||
| 52 |
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.