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 2b1e514 commit 0e3f944Copy full SHA for 0e3f944
src/PHPCR/Shell/Console/Input/StringInput.php
@@ -12,6 +12,10 @@ public function __construct($command)
12
{
13
$this->rawCommand = trim($command);
14
15
+ if (strpos(strtolower($this->rawCommand), 'select') === 0) {
16
+ $command = 'select' . substr($command, 6);
17
+ }
18
+
19
parent::__construct($command);
20
}
21
@@ -36,7 +40,7 @@ protected function parse()
36
40
37
41
protected function isQuery()
38
42
39
- if (strpos($this->rawCommand, 'select') === 0) {
43
44
return true;
45
46
0 commit comments