Passed
Push — master ( e5eba8...a24b1a )
by Igor
06:06
created
src/Query/Degeneration/Bindings.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
         return preg_replace_callback($pattern, function($m) use ($binds){
93 93
             if(isset($binds[$m[1]])){ // If it exists in our array
94 94
                 return $binds[$m[1]]; // Then replace it from our array
95
-            }else{
95
+            } else{
96 96
                 return $m[0]; // Otherwise return the whole match (basically we won't change it)
97 97
             }
98 98
         }, $sql);
Please login to merge, or discard this patch.