1 | <?php |
||
9 | class PivotalTrackerChannel |
||
10 | { |
||
11 | const API_ENDPOINT = 'https://www.pivotal-tracker.com/services/v5/'; |
||
12 | |||
13 | /** @var Client */ |
||
14 | protected $client; |
||
15 | |||
16 | /** @param Client $client */ |
||
17 | public function __construct(Client $client) |
||
21 | |||
22 | /** |
||
23 | * Send the given notification. |
||
24 | * |
||
25 | * @param mixed $notifiable |
||
26 | * @param \Illuminate\Notifications\Notification $notification |
||
27 | * |
||
28 | * @throws \NotificationChannels\PivotalTracker\Exceptions\CouldNotSendNotification |
||
29 | */ |
||
30 | public function send($notifiable, Notification $notification) |
||
50 | |||
51 | /** |
||
52 | * Return the stories api endpoint for a given project. |
||
53 | * |
||
54 | * @param int $projectId the projet identifier |
||
55 | * |
||
56 | * @return string the stories endpoint |
||
57 | */ |
||
58 | protected function storiesEndpoint($projectId) |
||
62 | } |
||
63 |
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.