Skip to content

Commit

Permalink
Fix phpcs error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Maarten Staa committed Feb 25, 2021
1 parent 83d6bde commit 9036109
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/TracingResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,14 @@ class TracingResult
* @param array $tracing
* @param array $errors
*/
public function __construct(string $queryText, ?array $variables, array $client, array $http, array $tracing, array $errors)
{
public function __construct(
string $queryText,
?array $variables,
array $client,
array $http,
array $tracing,
array $errors
) {
$this->queryText = $queryText;
$this->variables = $variables;
$this->client = $client;
Expand Down

0 comments on commit 9036109

Please sign in to comment.