| 1 | <?php | ||
| 11 | class TrelloChannel | ||
| 12 | { | ||
| 13 | const API_ENDPOINT = 'https://api.trello.com/1/cards/'; | ||
| 14 | |||
| 15 | /** @var Client */ | ||
| 16 | protected $client; | ||
| 17 | |||
| 18 | /** @param Client $client */ | ||
| 19 | 3 | public function __construct(Client $client) | |
| 23 | |||
| 24 | /** | ||
| 25 | * Send the given notification. | ||
| 26 | * | ||
| 27 | * @param mixed $notifiable | ||
| 28 | * @param \Illuminate\Notifications\Notification $notification | ||
| 29 | * | ||
| 30 | * @throws \NotificationChannels\Trello\Exceptions\InvalidConfiguration | ||
| 31 | * @throws \NotificationChannels\Trello\Exceptions\CouldNotSendNotification | ||
| 32 | */ | ||
| 33 | 3 | public function send($notifiable, Notification $notification) | |
| 55 | } | ||
| 56 | 
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.