Completed
Push — master ( e285c7...e20625 )
by Song
02:29 queued 10s
created
src/Grid/Displayers/Label.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,9 +13,9 @@
 block discarded – undo
13 13
             $this->value = $this->value->toArray();
14 14
         }
15 15
 
16
-        return collect((array) $this->value)->map(function ($item) use ($style) {
16
+        return collect((array) $this->value)->map(function($item) use ($style) {
17 17
             if (is_array($style)) {
18
-                if(is_string($this->getColumn()->getOriginal()) || is_int($this->getColumn()->getOriginal())) {
18
+                if (is_string($this->getColumn()->getOriginal()) || is_int($this->getColumn()->getOriginal())) {
19 19
                     $style = Arr::get($style, $this->getColumn()->getOriginal(), 'success');
20 20
                 } else {
21 21
                     $style = Arr::get($style, $item, 'success');
Please login to merge, or discard this patch.