Passed
Push — main ( acbae7...d1f7da )
by Wesley
01:48 queued 15s
created
src/TableGenerator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -107,11 +107,11 @@
 block discarded – undo
107 107
     {
108 108
        $this->keys = implode(", ", array_keys($this->columns));
109 109
        $this->value = implode(", ", array_values($this->columns));
110
-       $key = explode(",", $this->keys );
110
+       $key = explode(",", $this->keys);
111 111
        $value = explode(",", $this->value);
112 112
 
113 113
        $paramns = [];
114
-       for ($i=0; $i<count($key); $i++){
114
+       for ($i = 0; $i<count($key); $i++) {
115 115
            $list = "{$key[$i]} {$value[$i]}";
116 116
            $paramns[] = $list;
117 117
        }
Please login to merge, or discard this patch.