We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 977c493 commit 415c8d4Copy full SHA for 415c8d4
tests/Type/Doctrine/Query/QueryResultTypeWalkerTest.php
@@ -1142,8 +1142,8 @@ public function getTestData(): iterable
1142
[new ConstantIntegerType(3), TypeCombinator::addNull(new IntegerType())],
1143
[new ConstantIntegerType(4), new IntegerType()],
1144
[new ConstantIntegerType(5), new IntegerType()],
1145
- [new ConstantIntegerType(6), new IntegerType()],
1146
- [new ConstantIntegerType(7), new IntegerType()],
+ [new ConstantIntegerType(6), new MixedType()],
+ [new ConstantIntegerType(7), new MixedType()],
1147
]),
1148
'
1149
SELECT m.intColumn,
@@ -1163,7 +1163,7 @@ public function getTestData(): iterable
1163
[new ConstantIntegerType(1), $this->uint()],
1164
[new ConstantIntegerType(2), TypeCombinator::addNull($this->uint())],
1165
[new ConstantIntegerType(3), $this->uint()],
1166
- [new ConstantIntegerType(4), new FloatType()],
+ [new ConstantIntegerType(4), new MixedType()],
1167
1168
1169
SELECT ABS(m.intColumn),
0 commit comments