@@ -15,8 +15,8 @@ discard block |
||
| 15 | 15 | * @return $this |
| 16 | 16 | */ |
| 17 | 17 | public function orderBy($expression, $direction = 'asc') { |
| 18 | - if($expression instanceof OrderBySpecification) { |
|
| 19 | - foreach($expression->getFields() as $field) { |
|
| 18 | + if ($expression instanceof OrderBySpecification) { |
|
| 19 | + foreach ($expression->getFields() as $field) { |
|
| 20 | 20 | $this->addOrder($field[0], $field[1]); |
| 21 | 21 | } |
| 22 | 22 | return $this; |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | */ |
| 33 | 33 | public function orderByValues($fieldName, array $values) { |
| 34 | 34 | $expr = []; |
| 35 | - foreach(array_values($values) as $idx => $value) { |
|
| 35 | + foreach (array_values($values) as $idx => $value) { |
|
| 36 | 36 | $expr[] = $this->db()->quoteExpression("WHEN ? THEN ?", array($value, $idx)); |
| 37 | 37 | } |
| 38 | 38 | $this->orderBy[] = array(sprintf("CASE %s\n\t\t%s\n\tEND", $this->db()->quoteField($fieldName), join("\n\t\t", $expr)), 'ASC'); |
@@ -44,12 +44,12 @@ discard block |
||
| 44 | 44 | * @return string |
| 45 | 45 | */ |
| 46 | 46 | protected function buildOrder($query) { |
| 47 | - if(!count($this->orderBy)) { |
|
| 47 | + if (!count($this->orderBy)) { |
|
| 48 | 48 | return $query; |
| 49 | 49 | } |
| 50 | 50 | $query .= "ORDER BY\n"; |
| 51 | 51 | $arr = array(); |
| 52 | - foreach($this->orderBy as $order) { |
|
| 52 | + foreach ($this->orderBy as $order) { |
|
| 53 | 53 | list($expression, $direction) = $order; |
| 54 | 54 | $arr[] = sprintf("\t%s %s", $expression, strtoupper($direction)); |
| 55 | 55 | } |
@@ -62,8 +62,8 @@ discard block |
||
| 62 | 62 | */ |
| 63 | 63 | private function addOrder($expression, $direction) { |
| 64 | 64 | $direction = $this->fixDirection($direction); |
| 65 | - if(is_array($expression)) { |
|
| 66 | - if(!count($expression)) { |
|
| 65 | + if (is_array($expression)) { |
|
| 66 | + if (!count($expression)) { |
|
| 67 | 67 | return; |
| 68 | 68 | } |
| 69 | 69 | $arguments = array( |
@@ -11,16 +11,16 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function __construct($spec, $sortFieldsSpec) { |
| 13 | 13 | $expressions = []; |
| 14 | - foreach($spec as $specReference => $dbExpr) { |
|
| 15 | - if(is_int($specReference)) { |
|
| 14 | + foreach ($spec as $specReference => $dbExpr) { |
|
| 15 | + if (is_int($specReference)) { |
|
| 16 | 16 | $specReference = $dbExpr; |
| 17 | 17 | } |
| 18 | 18 | $expressions[$specReference] = $dbExpr; |
| 19 | 19 | } |
| 20 | - foreach($sortFieldsSpec as $sortFieldSpec) { |
|
| 21 | - if(array_key_exists(0, $sortFieldSpec) && array_key_exists($sortFieldSpec[0], $expressions)) { |
|
| 20 | + foreach ($sortFieldsSpec as $sortFieldSpec) { |
|
| 21 | + if (array_key_exists(0, $sortFieldSpec) && array_key_exists($sortFieldSpec[0], $expressions)) { |
|
| 22 | 22 | $direction = 'ASC'; |
| 23 | - if(array_key_exists(1, $sortFieldSpec) && strtoupper($sortFieldSpec[1]) !== 'ASC') { |
|
| 23 | + if (array_key_exists(1, $sortFieldSpec) && strtoupper($sortFieldSpec[1]) !== 'ASC') { |
|
| 24 | 24 | $direction = 'DESC'; |
| 25 | 25 | } |
| 26 | 26 | $this->fields[] = [ |