Completed
Push — master ( 1121c7...c4e7d6 )
by wen
13:05
created
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.
src/Form/Elements/File.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -267,6 +267,9 @@
 block discarded – undo
267 267
         ];
268 268
     }
269 269
 
270
+    /**
271
+     * @param string $rule
272
+     */
270 273
     public function addValidationRule($rule, $message = null)
271 274
     {
272 275
         $uploadRules = [
Please login to merge, or discard this patch.
src/Traits/StorageTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
      *
77 77
      * @param \Illuminate\Http\UploadedFile $file
78 78
      *
79
-     * @return mixed|string
79
+     * @return string
80 80
      */
81 81
     public function getUploadFileName(UploadedFile $file)
82 82
     {
Please login to merge, or discard this patch.