Completed
Pull Request — master (#24)
by
unknown
28s
created
src/Filters/BaseFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     public function __construct(array $config)
16 16
     {
17 17
         if (!empty($config['cssClass'])) {
18
-            $config['cssClass'] .= ' '.$this->cssClass;
18
+            $config['cssClass'] .= ' ' . $this->cssClass;
19 19
         }
20 20
         $this->loadConfig($config);
21 21
     }
Please login to merge, or discard this patch.
src/Columns/AttributeColumn.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      */
43 43
     public function _renderValue($row)
44 44
     {
45
-        $path = (array)$row;
45
+        $path = (array) $row;
46 46
         $exp = explode('.', $this->value);
47 47
 
48 48
         /**
Please login to merge, or discard this patch.