Skip to content

Commit

Permalink
Adapt new breaking changes in ResolveInfoConstructor
Browse files Browse the repository at this point in the history
  • Loading branch information
johannessteu committed Mar 16, 2019
1 parent c4f4e32 commit d63bb1f
Showing 1 changed file with 3 additions and 3 deletions.
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 d63bb1f

Please sign in to comment.