1 | <?php |
||
14 | final class Client implements ClientInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var LoopInterface |
||
18 | */ |
||
19 | private $loop; |
||
20 | /** |
||
21 | * @var AsyncClient |
||
22 | */ |
||
23 | private $client; |
||
24 | |||
25 | /** |
||
26 | * @param LoopInterface $loop |
||
27 | * @param AsyncClient $client |
||
28 | */ |
||
29 | private function __construct(LoopInterface $loop, AsyncClient $client) |
||
34 | |||
35 | /** |
||
36 | * @param array $options |
||
37 | * @return Client |
||
38 | */ |
||
39 | public static function create(array $options = []): self |
||
49 | |||
50 | /** |
||
51 | * @param string $input |
||
52 | * @return MetaInterface |
||
53 | */ |
||
54 | public function meta(): MetaInterface |
||
58 | } |
||
59 |
This check looks for function calls that miss required arguments.