Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: overblog/GraphQLBundle
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c3e8bf1371652b2204317f50df15048631c31add
Choose a base ref
..
head repository: overblog/GraphQLBundle
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cf99c9b737ba16b7a5c168670faff4d501377ff8
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +1 −1 composer.json
  2. +1 −1 tests/Config/Parser/MetadataParser/TypeGuesser/DocBlockTypeGuesserTest.php
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@
"ext-json": "*",
"murtukov/php-code-generator": "^0.1.5",
"phpdocumentor/reflection-docblock": "^5.2",
"phpdocumentor/type-resolver": "^1.4.0",
"phpdocumentor/type-resolver": ">1.4.0,<1.6.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/config": "^4.4.30 || ^5.3.7",
"symfony/dependency-injection": "^4.4.30 || ^5.3.7",
Original file line number Diff line number Diff line change
@@ -89,7 +89,7 @@ public function guessErrorDataProvider(): iterable
yield ['mixed[]', $reflectorClass, 'Tag @'.$tag.' found, but the array values cannot be mixed type'];
yield ['array<mixed>', $reflectorClass, 'Tag @'.$tag.' found, but the array values cannot be mixed type'];
yield ['', $reflectorClass, 'No @'.$tag.' tag found in doc block or tag has no type'];
yield ['[]', $reflectorClass, 'No @'.$tag.' tag found in doc block or tag has no type'];
yield ['[]', $reflectorClass, 'Doc Block parsing failed'];
}
}