Fix linting issue and typos.

This commit is contained in:
chriszarate 2018-12-01 19:43:51 -05:00
parent 63b4e3f0a4
commit c33e41f2bf
2 changed files with 4 additions and 8 deletions

View File

@ -96,7 +96,7 @@ class OperationParams
$instance->readOnly = (bool) $readonly; $instance->readOnly = (bool) $readonly;
// Apollo server/client compatibility: look for the queryid in extensions // Apollo server/client compatibility: look for the queryid in extensions
if (isset($params['extensions']['persistedQuery']['sha256Hash']) && empty($instance->query) && empty($instance->queryid)) { if (isset($params['extensions']['persistedQuery']['sha256Hash']) && empty($instance->query) && empty($instance->queryId)) {
$instance->queryId = $params['extensions']['persistedQuery']['sha256Hash']; $instance->queryId = $params['extensions']['persistedQuery']['sha256Hash'];
} }

View File

@ -336,11 +336,7 @@ class RequestParsingTest extends TestCase
public function testParsesApolloPersistedQueryJSONRequest() : void public function testParsesApolloPersistedQueryJSONRequest() : void
{ {
$queryId = 'my-query-id'; $queryId = 'my-query-id';
$extensions = [ $extensions = ['persistedQuery' => ['sha256Hash' => $queryId]];
'persistedQuery' => [
'sha256Hash' => $queryId,
],
];
$variables = ['test' => 1, 'test2' => 2]; $variables = ['test' => 1, 'test2' => 2];
$operation = 'op'; $operation = 'op';