@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | class WhereQueryParser |
14 | 14 | { |
15 | 15 | |
16 | - protected function prepareArrayForWhere($bindKey, $bindVal = null, $mainAr = []){ |
|
16 | + protected function prepareArrayForWhere($bindKey, $bindVal = null, $mainAr = []) { |
|
17 | 17 | $ar = $conditionAr = []; |
18 | 18 | // expecting a string like 'status = :status' |
19 | 19 | if ($this->checkWherePrepareUsed($bindKey)) { |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | public function parseWhereQuery($whereQuery = []) |
36 | 36 | { |
37 | 37 | $ar = []; |
38 | - if(!count($whereQuery)){ |
|
38 | + if (!count($whereQuery)) { |
|
39 | 39 | return $ar; |
40 | 40 | } |
41 | 41 |