1 | <?php declare(strict_types=1); |
||
11 | final class Client implements ClientInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var LoopInterface |
||
15 | */ |
||
16 | protected $loop; |
||
17 | |||
18 | /** |
||
19 | * @var AsyncClient |
||
20 | */ |
||
21 | protected $client; |
||
22 | |||
23 | /** |
||
24 | * @var StreamingClient |
||
25 | */ |
||
26 | protected $streamingClient; |
||
27 | |||
28 | public function __construct( |
||
35 | |||
36 | public function withAccessToken(string $accessToken, string $accessTokenSecret): Client |
||
42 | |||
43 | public function withOutAccessToken(): Client |
||
49 | |||
50 | public function stream(): StreamingClient |
||
62 | |||
63 | public function tweet(string $tweet): TweetInterface |
||
70 | |||
71 | public function user(string $tweet): UserInterface |
||
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.