Completed
Push — master ( 2d7ca6...a6d5b0 )
by wen
15:16
created
src/Traits/SelectOptionsFromModel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
 
85 85
     /**
86 86
      *
87
-     * @return array
87
+     * @return \Illuminate\Support\Collection
88 88
      */
89 89
     protected function setOptionsFromModel()
90 90
     {
Please login to merge, or discard this patch.
src/Console/ComponentMakeCommand.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -148,6 +148,9 @@  discard block
 block discarded – undo
148 148
         );
149 149
     }
150 150
 
151
+    /**
152
+     * @param string $model
153
+     */
151 154
     protected function getViewColumns($model)
152 155
     {
153 156
         $columns = $this->getTableColumns($model);
@@ -182,6 +185,9 @@  discard block
 block discarded – undo
182 185
         return $this->columnTypeMappings[$name] ?? 'text';
183 186
     }
184 187
 
188
+    /**
189
+     * @param string $model
190
+     */
185 191
     protected function getFormElements($model)
186 192
     {
187 193
         $columns = $this->getTableColumns($model);
Please login to merge, or discard this patch.