Completed
Pull Request — master (#20)
by
unknown
24:50
created
src/Mutator/AddClassToCell.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,11 +58,11 @@
 block discarded – undo
58 58
      */
59 59
     public function change($row)
60 60
     {
61
-        if (is_array($row) || $row instanceof Row ) {
61
+        if (is_array($row) || $row instanceof Row) {
62 62
             foreach ($this->getCellName() as $cell) {
63 63
                 $cellClass = isset($row[self::ROW_KEY][$cell]) ? $row[self::ROW_KEY][$cell] : [];
64 64
                 $cellClass = array_merge($cellClass, $this->getClassName());
65
-                $row[self::ROW_KEY][$cell]  = $cellClass;
65
+                $row[self::ROW_KEY][$cell] = $cellClass;
66 66
             }
67 67
         }
68 68
         return $row;
Please login to merge, or discard this patch.