@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | public function rewind(): void |
179 | 179 | { |
180 | 180 | $this->index = -1; |
181 | - if (! isset($this->result)) { |
|
181 | + if (!isset($this->result)) { |
|
182 | 182 | $this->cache = array(); |
183 | 183 | $this->do(); |
184 | 184 | } |
@@ -219,8 +219,8 @@ discard block |
||
219 | 219 | $db_columns = $this->current->db_columns(); |
220 | 220 | // Convert column names to field names |
221 | 221 | $fields = array(); |
222 | - foreach($items as $column => $value){ |
|
223 | - $fieldName = array_search($column ,$db_columns); |
|
222 | + foreach ($items as $column => $value) { |
|
223 | + $fieldName = array_search($column, $db_columns); |
|
224 | 224 | $fields[$fieldName] = $value; |
225 | 225 | } |
226 | 226 | $this->current->load(...$fields); |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | $this->current->clearEditedFields(); |
229 | 229 | } else { |
230 | 230 | $this->current = null; |
231 | - $this->index = -1; |
|
231 | + $this->index = -1; |
|
232 | 232 | } |
233 | 233 | |
234 | 234 | |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | |
240 | 240 | public function first() |
241 | 241 | { |
242 | - if(!isset($this->cache)) { |
|
242 | + if (!isset($this->cache)) { |
|
243 | 243 | $this->rewind(); |
244 | 244 | } |
245 | 245 | |
@@ -384,7 +384,7 @@ discard block |
||
384 | 384 | } |
385 | 385 | |
386 | 386 | $this->modifiers["ORDER BY"] = []; |
387 | - foreach($filters as $filter){ |
|
387 | + foreach ($filters as $filter) { |
|
388 | 388 | $this->modifiers["ORDER BY"][] = is_array($filter) ? $filter : [$filter => "ASC"]; |
389 | 389 | } |
390 | 390 | $this->modifiers["ORDER BY"] = $filters; |
@@ -403,7 +403,7 @@ discard block |
||
403 | 403 | |
404 | 404 | public function count(): int |
405 | 405 | { |
406 | - if (! isset($this->result)) { |
|
406 | + if (!isset($this->result)) { |
|
407 | 407 | $this->do(); |
408 | 408 | } |
409 | 409 | return $this->result->num_rows; |
@@ -438,7 +438,7 @@ discard block |
||
438 | 438 | |
439 | 439 | |
440 | 440 | // Get the result |
441 | - $this->result = $result->fetch_result() ; |
|
441 | + $this->result = $result->fetch_result(); |
|
442 | 442 | return $this; |
443 | 443 | } |
444 | 444 | |
@@ -473,12 +473,12 @@ discard block |
||
473 | 473 | $modifiers = ""; |
474 | 474 | |
475 | 475 | // it there are any ORDER BY, build the clause |
476 | - if (count($this->modifiers)> 0) { |
|
476 | + if (count($this->modifiers) > 0) { |
|
477 | 477 | list($modifiers, $join) = $this->buildModifiers(); |
478 | 478 | } |
479 | 479 | |
480 | 480 | // if there are any filters build WHERE clause |
481 | - if (count($this->filters)> 0) { |
|
481 | + if (count($this->filters) > 0) { |
|
482 | 482 | list($whereClause, $values, $join_t) = $this->buildWhereClause($this->filters); |
483 | 483 | } |
484 | 484 | |
@@ -488,12 +488,12 @@ discard block |
||
488 | 488 | $query .= " ".$this->buildJoin($join); |
489 | 489 | $query .= " ".$this->buildJoin($join_t); |
490 | 490 | |
491 | - if(count($this->filters)>0){ |
|
491 | + if (count($this->filters) > 0) { |
|
492 | 492 | $query .= sprintf(" WHERE %s ", $whereClause); |
493 | 493 | } |
494 | 494 | |
495 | 495 | // it there are any ORDER BY, build the clause |
496 | - if (count($this->modifiers)> 0) { |
|
496 | + if (count($this->modifiers) > 0) { |
|
497 | 497 | $query .= sprintf(" ORDER BY %s", $modifiers); |
498 | 498 | } |
499 | 499 | |
@@ -523,10 +523,10 @@ discard block |
||
523 | 523 | |
524 | 524 | $clause = array(); |
525 | 525 | for ($i = 1; $i < count($join); $i++) { |
526 | - $clause[] = sprintf( |
|
526 | + $clause[] = sprintf( |
|
527 | 527 | " %s ON %s.%s = %s.%s", |
528 | 528 | $join[$i]["table"], |
529 | - $join[$i-1]["table"], |
|
529 | + $join[$i - 1]["table"], |
|
530 | 530 | $join[$i]["column"], |
531 | 531 | $join[$i]["table"], |
532 | 532 | $join[$i]["column"] |
@@ -544,8 +544,8 @@ discard block |
||
544 | 544 | $conditions = array(); |
545 | 545 | $join = array(); |
546 | 546 | |
547 | - foreach($order_by as $order_clause) { |
|
548 | - if(is_array($order_clause)) { |
|
547 | + foreach ($order_by as $order_clause) { |
|
548 | + if (is_array($order_clause)) { |
|
549 | 549 | $raw = array_key_first($order_clause); |
550 | 550 | $method = $order_clause[$raw]; |
551 | 551 | } else { |
@@ -615,7 +615,7 @@ discard block |
||
615 | 615 | $values = array(); |
616 | 616 | $join = array(); |
617 | 617 | |
618 | - foreach($filters as $key => $value) { |
|
618 | + foreach ($filters as $key => $value) { |
|
619 | 619 | $lookup = $this->lookup($key); |
620 | 620 | |
621 | 621 | $column = $lookup["column"]; |
@@ -664,8 +664,8 @@ discard block |
||
664 | 664 | |
665 | 665 | $join = array(); |
666 | 666 | foreach ($match as $k) { |
667 | - if($last->isForeignKey($k)) { |
|
668 | - $new= new ($last->getRelationshipParentModel($k))(); |
|
667 | + if ($last->isForeignKey($k)) { |
|
668 | + $new = new ($last->getRelationshipParentModel($k))(); |
|
669 | 669 | |
670 | 670 | $join[] = array( |
671 | 671 | "column"=> $last->getColumnFromField($k), |