Passed
Push — master ( 56b0ed...dd8496 )
by RN
01:44
created
src/Dolphin/Builders/WhereQueryBuilder.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,11 +17,11 @@  discard block
 block discarded – undo
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
 block discarded – undo
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) {
Please login to merge, or discard this patch.