Completed
Push — master ( ead087...20edd5 )
by smiley
02:40
created
src/Query/Dialects/Postgres/Select.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,8 +36,8 @@
 block discarded – undo
36 36
 
37 37
 		$sql  = 'SELECT ';
38 38
 		$sql .= $this->distinct ? 'DISTINCT ' : '';
39
-		$sql .= !empty($this->cols) ? implode($glue , $this->cols).PHP_EOL : '* ';
40
-		$sql .= 'FROM '.implode($glue , $this->from);
39
+		$sql .= !empty($this->cols) ? implode($glue, $this->cols).PHP_EOL : '* ';
40
+		$sql .= 'FROM '.implode($glue, $this->from);
41 41
 		$sql .= $this->_getWhere();
42 42
 		$sql .= !empty($this->groupby) ? PHP_EOL.'GROUP BY '.implode($glue, $this->groupby) : '';
43 43
 		$sql .= !empty($this->orderby) ? PHP_EOL.'ORDER BY '.implode($glue, $this->orderby) : '';
Please login to merge, or discard this patch.
src/Query/Dialects/Firebird/Select.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@
 block discarded – undo
43 43
 		$sql  = 'SELECT ';
44 44
 		$sql .= $this->limit ? 'FIRST ? SKIP ? ' : '';
45 45
 		$sql .= $this->distinct ? 'DISTINCT ' : '';
46
-		$sql .= !empty($this->cols) ? implode($glue , $this->cols).PHP_EOL : '* ';
47
-		$sql .= 'FROM '.implode($glue , $this->from);
46
+		$sql .= !empty($this->cols) ? implode($glue, $this->cols).PHP_EOL : '* ';
47
+		$sql .= 'FROM '.implode($glue, $this->from);
48 48
 		$sql .= $this->_getWhere();
49 49
 		$sql .= !empty($this->groupby) ? PHP_EOL.'GROUP BY '.implode($glue, $this->groupby) : '';
50 50
 		$sql .= !empty($this->orderby) ? PHP_EOL.'ORDER BY '.implode($glue, $this->orderby) : '';
Please login to merge, or discard this patch.
src/Query/Dialects/SQLite/Select.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,8 +36,8 @@
 block discarded – undo
36 36
 
37 37
 		$sql  = 'SELECT ';
38 38
 		$sql .= $this->distinct ? 'DISTINCT ' : '';
39
-		$sql .= !empty($this->cols) ? implode($glue , $this->cols).PHP_EOL : '* ';
40
-		$sql .= 'FROM '.implode($glue , $this->from);
39
+		$sql .= !empty($this->cols) ? implode($glue, $this->cols).PHP_EOL : '* ';
40
+		$sql .= 'FROM '.implode($glue, $this->from);
41 41
 		$sql .= $this->_getWhere();
42 42
 		$sql .= !empty($this->groupby) ? PHP_EOL.'GROUP BY '.implode($glue, $this->groupby) : '';
43 43
 		$sql .= !empty($this->orderby) ? PHP_EOL.'ORDER BY '.implode($glue, $this->orderby) : '';
Please login to merge, or discard this patch.