Skip to content

Commit

Permalink
Merge pull request #6 from t3n/update
Browse files Browse the repository at this point in the history
Upgrade to webonyx/graphql-php 0.13
  • Loading branch information
Torsten85 authored Mar 18, 2019
2 parents 75bc3a0 + d63bb1f commit 1943d4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
],
"require": {
"php": ">=7.2",
"webonyx/graphql-php": "dev-master#d591eccd9f3f511c9ab25bc5658d85f5e29f2260",
"webonyx/graphql-php": "~0.13",
"ext-json": "*"
},
"require-dev": {
Expand Down
6 changes: 3 additions & 3 deletions tests/ResolveInfoHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ public static function createResolveInfo(array $options) : ResolveInfo
$options['fieldNodes'] ?? null,
$options['returnType'] ?? null,
$options['parentType'] ?? new ObjectType(['name' => 'dummy']),
$options['path'] ?? null,
$options['path'] ?? [],
$options['schema'] ?? new Schema([]),
$options['fragments'] ?? null,
$options['fragments'] ?? [],
$options['rootValue'] ?? null,
$options['operation'] ?? null,
$options['variableValues'] ?? null
$options['variableValues'] ?? []
);
}
}

0 comments on commit 1943d4e

Please sign in to comment.