Completed
Push — master ( 1e8bd6...d9164f )
by Auke
02:48 queued 13s
created
src/store/PSQLQueryParser.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,11 +4,11 @@
 block discarded – undo
4 4
 
5 5
 final class PSQLQueryParser {
6 6
 	
7
-	private $tokenizer;
7
+    private $tokenizer;
8 8
 
9
-	public function __construct($tokenizer) {
10
-		$this->tokenizer = $tokenizer;
11
-	}
9
+    public function __construct($tokenizer) {
10
+        $this->tokenizer = $tokenizer;
11
+    }
12 12
 
13 13
     /**
14 14
      * @param string $query
Please login to merge, or discard this patch.
src/store/MySQLQueryParser.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,9 +6,9 @@
 block discarded – undo
6 6
 
7 7
     private $tokenizer;
8 8
 
9
-	public function __construct($tokenizer) {
10
-		$this->tokenizer = $tokenizer;
11
-	}
9
+    public function __construct($tokenizer) {
10
+        $this->tokenizer = $tokenizer;
11
+    }
12 12
 
13 13
     /**
14 14
      * @param string $query
Please login to merge, or discard this patch.
src/store/TreeQueryParser.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,11 +4,11 @@
 block discarded – undo
4 4
 
5 5
 final class TreeQueryParser {
6 6
 	
7
-	private $tokenizer;
7
+    private $tokenizer;
8 8
 
9
-	public function __construct($tokenizer) {
10
-		$this->tokenizer = $tokenizer;
11
-	}
9
+    public function __construct($tokenizer) {
10
+        $this->tokenizer = $tokenizer;
11
+    }
12 12
 
13 13
     /**
14 14
      * @param string $query
Please login to merge, or discard this patch.