Completed
Push — master ( 7e02e6...ea0e93 )
by wen
03:01
created
src/View/Columns/Column.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -115,6 +115,9 @@
 block discarded – undo
115 115
         return $this->getValueFromObject($this->getModel(), $this->getName());
116 116
     }
117 117
 
118
+    /**
119
+     * @param Model $instance
120
+     */
118 121
     protected function getValueFromObject($instance, $name)
119 122
     {
120 123
 
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,11 +3,11 @@
 block discarded – undo
3 3
 
4 4
 namespace Sco\Admin\View\Columns;
5 5
 
6
+use Illuminate\Contracts\Support\Arrayable;
7
+use Illuminate\Contracts\Support\Jsonable;
6 8
 use Illuminate\Database\Eloquent\Model;
7 9
 use Illuminate\Support\Collection;
8 10
 use JsonSerializable;
9
-use Illuminate\Contracts\Support\Arrayable;
10
-use Illuminate\Contracts\Support\Jsonable;
11 11
 use Sco\Admin\Contracts\ColumnInterface;
12 12
 
13 13
 abstract class Column implements ColumnInterface, Arrayable, Jsonable, JsonSerializable
Please login to merge, or discard this patch.