1 | <?php declare(strict_types=1); |
||
15 | class Factory |
||
16 | { |
||
17 | /** |
||
18 | * @param ContainerInterface $container |
||
19 | * @param LoopInterface $loop |
||
20 | * @param array $options |
||
21 | * @return Client |
||
22 | */ |
||
23 | 1 | public static function create( |
|
43 | |||
44 | /** |
||
45 | * @param ContainerInterface $container |
||
46 | * @param HttpClient $httpClient |
||
47 | * @param Resolver $resolver |
||
48 | * @param LoopInterface $loop |
||
49 | * @param array $options |
||
50 | * @return Client |
||
51 | */ |
||
52 | 1 | public static function createFromReactHttpClient( |
|
68 | |||
69 | /** |
||
70 | * @param ContainerInterface $container |
||
71 | * @param LoopInterface $loop |
||
72 | * @param Browser $buzz |
||
73 | * @param array $options |
||
74 | * @return Client |
||
75 | */ |
||
76 | 1 | public static function createFromBuzz( |
|
89 | } |
||
90 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.