1 | <?php |
||
10 | class ClientFactory |
||
11 | { |
||
12 | /** |
||
13 | * @param string $scheme |
||
14 | * @param string $host |
||
15 | * @param string $user |
||
16 | * @param string $pass |
||
17 | * @param int $port |
||
18 | * |
||
19 | * @return Client |
||
20 | */ |
||
21 | public function getClient(string $scheme, string $host, string $user, string $pass, int $port = 80): Client |
||
37 | } |
||
38 |