Passed
Push — master ( 4a3939...6f91f6 )
by y
02:01
created
src/DB/Select.php 1 patch
Braces   +7 added lines, -14 removed lines patch added patch discarded remove patch
@@ -117,8 +117,7 @@  discard block
 block discarded – undo
117 117
         if ($table instanceof Select) {
118 118
             $this->table = $table->toSubquery();
119 119
             $this->alias = uniqid('_') . "_{$table->alias}";
120
-        }
121
-        else {
120
+        } else {
122 121
             $this->table = (string)$table;
123 122
             $this->alias = uniqid('_') . "__{$table}";
124 123
         }
@@ -228,8 +227,7 @@  discard block
 block discarded – undo
228 227
     public function group (string $column) {
229 228
         if (!strlen($this->_group)) {
230 229
             $this->_group = " GROUP BY {$column}";
231
-        }
232
-        else {
230
+        } else {
233 231
             $this->_group .= ", {$column}";
234 232
         }
235 233
         return $this;
@@ -244,8 +242,7 @@  discard block
 block discarded – undo
244 242
     public function having (string $condition) {
245 243
         if (!strlen($this->_having)) {
246 244
             $this->_having = " HAVING {$condition}";
247
-        }
248
-        else {
245
+        } else {
249 246
             $this->_having .= " AND {$condition}";
250 247
         }
251 248
         return $this;
@@ -264,8 +261,7 @@  discard block
 block discarded – undo
264 261
         $select->_limit = '';
265 262
         if ($all) {
266 263
             $this->_import .= " INTERSECT ALL {$select->toSql()}";
267
-        }
268
-        else {
264
+        } else {
269 265
             $this->_import .= " INTERSECT {$select->toSql()}";
270 266
         }
271 267
         return $this;
@@ -315,8 +311,7 @@  discard block
 block discarded – undo
315 311
     public function limit (int $limit, int $offset = 0) {
316 312
         if ($limit == 0) {
317 313
             $this->_limit = '';
318
-        }
319
-        else {
314
+        } else {
320 315
             $this->_limit = " LIMIT {$limit}";
321 316
             if ($offset > 1) {
322 317
                 $this->_limit .= " OFFSET {$offset}";
@@ -454,8 +449,7 @@  discard block
 block discarded – undo
454 449
         $select->_limit = '';
455 450
         if ($all) {
456 451
             $this->_import .= " UNION ALL {$select->toSql()}";
457
-        }
458
-        else {
452
+        } else {
459 453
             $this->_import .= " UNION {$select->toSql()}";
460 454
         }
461 455
         return $this;
@@ -470,8 +464,7 @@  discard block
 block discarded – undo
470 464
     public function where (string $condition) {
471 465
         if (!strlen($this->_where)) {
472 466
             $this->_where = " WHERE {$condition}";
473
-        }
474
-        else {
467
+        } else {
475 468
             $this->_where .= " AND {$condition}";
476 469
         }
477 470
         return $this;
Please login to merge, or discard this patch.