Completed
Pull Request — develop (#87)
by Patrick
02:42
created
Serialize/class.SpreadSheetSerializer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
             {
90 90
                 $this->addValueByColName($res[0], $tmp, $colName, $row[$colName]);
91 91
             }
92
-            $tmp = $tmp+array_fill_keys(range(0,max(array_keys($tmp))),false);
92
+            $tmp = $tmp + array_fill_keys(range(0, max(array_keys($tmp))), false);
93 93
             ksort($tmp);
94 94
             $res[] = $tmp;
95 95
         }
Please login to merge, or discard this patch.
class.WebPage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -236,9 +236,9 @@
 block discarded – undo
236 236
      *
237 237
      * @return string The link
238 238
      */
239
-    public function createLink($linkName, $linkTarget = '#', $class=false)
239
+    public function createLink($linkName, $linkTarget = '#', $class = false)
240 240
     {
241
-        $data =  array('href'=>$linkTarget);
241
+        $data = array('href'=>$linkTarget);
242 242
         if($class !== false)
243 243
         {
244 244
             $data['class'] = $class;
Please login to merge, or discard this patch.