Completed
Push — master ( 78cfc1...5d1a46 )
by Alexander
03:57
created
src/data/PDO.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -164,7 +164,9 @@
 block discarded – undo
164 164
     {
165 165
         $out = [];
166 166
         foreach ($conditions as $k => $v) {
167
-            if (is_array($v)) $v = join(',', $v);
167
+            if (is_array($v)) {
168
+                $v = join(',', $v);
169
+            }
168 170
             $out[] = "c_{$k}:'{$v}'";
169 171
         }
170 172
         foreach ($data as $k => $v) {
Please login to merge, or discard this patch.