Passed
Push — master ( 213898...b5fe83 )
by RN
01:47
created
src/Dolphin/Parsers/WhereQueryParser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.