Completed
Push — master ( 50db7f...f2d425 )
by Midori
25:50 queued 10:53
created
src/QueryMaker.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     public function where($key, $value) : QueryInterface
44 44
     {
45 45
         $hasOperator = preg_match('~^(([<>=])+(=)*)~', (string) $value);
46
-        if (! empty($hasOperator)) {
46
+        if (!empty($hasOperator)) {
47 47
             $operator = '';
48 48
         } else {
49 49
             $operator = '=';
@@ -103,14 +103,14 @@  discard block
 block discarded – undo
103 103
 
104 104
         foreach ($values as $key => $value) {
105 105
             $hasOperator = preg_match('~^(([<>=])+(=)*)~', $value, $matches);
106
-            if (! empty($hasOperator)) {
106
+            if (!empty($hasOperator)) {
107 107
                 $operator = reset($matches);
108 108
                 $value    = substr($value, strlen($operator));
109 109
             } else {
110 110
                 $operator = '=';
111 111
             }
112 112
 
113
-            if (! isset($this->params[$key])) {
113
+            if (!isset($this->params[$key])) {
114 114
                 $queryValues[] = $key . $operator . '\'' . $value . '\'';
115 115
                 $params []     = $key . $operator . ':' . $key;
116 116
 
Please login to merge, or discard this patch.