Skip to content

Commit 8ab4634

Browse files
committed
Fix build
1 parent bfefffe commit 8ab4634

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
],
88
"require": {
99
"php": "^7.2 || ^8.0",
10-
"phpstan/phpstan": "^1.8.3"
10+
"phpstan/phpstan": "^1.8.6"
1111
},
1212
"conflict": {
1313
"doctrine/collections": "<1.0",

tests/Type/Doctrine/Query/QueryResultTypeWalkerTest.php

+5-2
Original file line numberDiff line numberDiff line change
@@ -368,8 +368,11 @@ public function getTestData(): iterable
368368
]),
369369
$this->constantArray([
370370
[new ConstantIntegerType(0), new ObjectType(Many::class)],
371-
[new ConstantStringType('id'), new StringType(), true],
372-
[new ConstantStringType('intColumn'), new IntegerType(), true],
371+
]),
372+
$this->constantArray([
373+
[new ConstantIntegerType(0), new ObjectType(Many::class)],
374+
[new ConstantStringType('id'), new StringType()],
375+
[new ConstantStringType('intColumn'), new IntegerType()],
373376
])
374377
),
375378
'

0 commit comments

Comments
 (0)