Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Sep 22, 2022
1 parent bfefffe commit 8ab4634
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
],
"require": {
"php": "^7.2 || ^8.0",
"phpstan/phpstan": "^1.8.3"
"phpstan/phpstan": "^1.8.6"
},
"conflict": {
"doctrine/collections": "<1.0",
Expand Down
7 changes: 5 additions & 2 deletions tests/Type/Doctrine/Query/QueryResultTypeWalkerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,11 @@ public function getTestData(): iterable
]),
$this->constantArray([
[new ConstantIntegerType(0), new ObjectType(Many::class)],
[new ConstantStringType('id'), new StringType(), true],
[new ConstantStringType('intColumn'), new IntegerType(), true],
]),
$this->constantArray([
[new ConstantIntegerType(0), new ObjectType(Many::class)],
[new ConstantStringType('id'), new StringType()],
[new ConstantStringType('intColumn'), new IntegerType()],
])
),
'
Expand Down

0 comments on commit 8ab4634

Please sign in to comment.