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 bb5c744 commit 17233e8Copy full SHA for 17233e8
src/Type/Doctrine/Query/QueryResultTypeWalker.php
@@ -1587,11 +1587,6 @@ public function walkLiteral($literal): string
1587
if (stripos($value, 'e') !== false) {
1588
$type = new DqlConstantStringType((string) (float) $value, $literal->type);
1589
} else {
1590
- // if ($this->phpVersion->getVersionId() >= 80400) {
1591
- // $type = new ConstantFloatType((float) $value);
1592
- // } else {
1593
- // $type = new DqlConstantStringType($value, $literal->type);
1594
- // }
1595
$type = new DqlConstantStringType($value, $literal->type);
1596
}
1597
0 commit comments