Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function __construct(HttpClient $httpClient, string $apiKey, string $graphqlEndpoint = null, MessageFactory $messageFactory = null) |
||
16 | { |
||
17 | $this->httpClient = $httpClient; |
||
18 | $this->apiKey = $apiKey; |
||
19 | $this->graphqlEndpoint = $graphqlEndpoint; |
||
20 | $this->messageFactory = $messageFactory; |
||
21 | } |
||
22 | } |
||
23 |