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 11cac16 commit 8312857Copy full SHA for 8312857
src/PHPCR/Util/QOM/Sql2Scanner.php
@@ -75,7 +75,8 @@ public function lookupNextToken($offset = 0)
75
*/
76
public function getPreviousDelimiter()
77
{
78
- return $this->delimiters[$this->curpos - 1];
+
79
+ return isset($this->delimiters[$this->curpos - 1]) ? $this->delimiters[$this->curpos - 1] : ' ';
80
}
81
82
/**
0 commit comments