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 1872220 commit 334c6c6Copy full SHA for 334c6c6
src/SqlAst/ParserInference.php
@@ -74,7 +74,7 @@ public function narrowResultType(string $queryString, ConstantArrayType $resultT
74
$fromTable = $this->schemaReflection->getTable($fromName);
75
} elseif ($from instanceof Join) {
76
while (1) {
77
- if (!$from instanceof Join || !method_exists($from, 'getCondition')) {
+ if (! $from instanceof Join || ! method_exists($from, 'getCondition')) {
78
return $resultType;
79
}
80
0 commit comments