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