@@ -17,11 +17,11 @@ discard block |
||
17 | 17 | { |
18 | 18 | private $qb; |
19 | 19 | |
20 | - public function __construct(){ |
|
20 | + public function __construct() { |
|
21 | 21 | $this->qb = new QueryBuilder(); |
22 | 22 | } |
23 | 23 | |
24 | - private function emptyConditionsResponse($conditions = array()){ |
|
24 | + private function emptyConditionsResponse($conditions = array()) { |
|
25 | 25 | if (!count($conditions)) { |
26 | 26 | return array(); |
27 | 27 | } |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | |
53 | 53 | foreach ($conditions as $where) { |
54 | 54 | $sign = '='; |
55 | - if(count($where)==3) { |
|
55 | + if (count($where) == 3) { |
|
56 | 56 | $sign = $where[1]; |
57 | 57 | } |
58 | 58 | if ($firstTime) { |