1 | <?php |
||
18 | final class HttplugClientFactory implements ClientFactoryInterface |
||
19 | { |
||
20 | /** |
||
21 | * @var HttpClient |
||
22 | */ |
||
23 | private $client; |
||
24 | |||
25 | /** |
||
26 | * @var MessageFactory |
||
27 | */ |
||
28 | private $messageFactory; |
||
29 | |||
30 | /** |
||
31 | * Initialize client. |
||
32 | */ |
||
33 | public function __construct(HttpClient $client, MessageFactory $messageFactory) |
||
38 | |||
39 | public function createClient(string $host, string $token): ClientInterface |
||
45 | } |
||
46 |