1 | <?php |
||
12 | class IftttWebhookChannel |
||
13 | { |
||
14 | /** @var string $key */ |
||
15 | protected $key; |
||
16 | |||
17 | /** @var string $event */ |
||
18 | protected $event; |
||
19 | |||
20 | /** @var string $param1 */ |
||
21 | protected $param1; |
||
22 | |||
23 | /** @var string $param2 */ |
||
24 | protected $param2; |
||
25 | |||
26 | /** @var string $param3 */ |
||
27 | protected $param3; |
||
28 | |||
29 | /** |
||
30 | * @param $notifiable |
||
31 | * @param Notification $notification |
||
32 | * @return bool |
||
33 | * @throws \Arimolzer\IftttWebhook\Exceptions\IftttWebhookException |
||
34 | */ |
||
35 | public function send($notifiable, Notification $notification) : bool |
||
51 | |||
52 | /** |
||
53 | * @param string $key |
||
54 | * @param string $event |
||
55 | * @return IftttWebhookChannel $this |
||
56 | */ |
||
57 | public function setConfig(string $key, string $event) : IftttWebhookChannel |
||
63 | |||
64 | /** |
||
65 | * @param null $param1 |
||
66 | * @param null $param2 |
||
67 | * @param null $param3 |
||
68 | * @return $this |
||
69 | */ |
||
70 | public function setParams($param1 = null, $param2 = null, $param3 = null) : IftttWebhookChannel |
||
78 | } |
||
79 |
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.