Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function __construct(AuthClient $authClient, string $graphqlEndpoint = null, HttpClient $httpClient = null, MessageFactory $messageFactory = null) |
||
14 | { |
||
15 | parent::__construct($httpClient, $messageFactory); |
||
16 | |||
17 | $this->authClient = $authClient; |
||
18 | $this->graphqlEndpoint = $graphqlEndpoint; |
||
19 | } |
||
20 | } |
||
21 |