1 | <?php |
||
7 | class MicrosoftTeamsChannel |
||
8 | { |
||
9 | /** |
||
10 | * @var MicrosoftTeams |
||
11 | */ |
||
12 | protected $microsoftTeams; |
||
13 | |||
14 | /** |
||
15 | * Channel constructor. |
||
16 | * |
||
17 | * @param MicrosoftTeams $microsoftTeams |
||
18 | */ |
||
19 | 3 | public function __construct(MicrosoftTeams $microsoftTeams) |
|
23 | |||
24 | /** |
||
25 | * Send the given notification. |
||
26 | * |
||
27 | * @param mixed $notifiable |
||
28 | * @param Notification $notification |
||
29 | * |
||
30 | * @return \Psr\Http\Message\ResponseInterface|null |
||
31 | */ |
||
32 | 3 | public function send($notifiable, Notification $notification) |
|
47 | } |
||
48 |
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.