1 | <?php declare(strict_types=1); |
||
12 | class Factory |
||
13 | { |
||
14 | /** |
||
15 | * @param Locator $locator |
||
16 | * @param LoopInterface $loop |
||
17 | * @param array $options |
||
18 | * @return Client |
||
19 | */ |
||
20 | 1 | public static function create( |
|
38 | |||
39 | /** |
||
40 | * @param Locator $locator |
||
41 | * @param Resolver $resolver |
||
42 | * @param LoopInterface $loop |
||
43 | * @param array $options |
||
44 | * @return Client |
||
45 | */ |
||
46 | 1 | public static function createFromResolver( |
|
66 | |||
67 | /** |
||
68 | * @param Locator $locator |
||
69 | * @param LoopInterface $loop |
||
70 | * @param Browser $buzz |
||
71 | * @param array $options |
||
72 | * @return Client |
||
73 | */ |
||
74 | 1 | public static function createFromBuzz( |
|
87 | } |
||
88 |