Completed
Pull Request — master (#5150)
by
unknown
03:31
created
src/Widgets/Form.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
     /**
145 145
      * Get form title.
146 146
      *
147
-     * @return mixed
147
+     * @return string
148 148
      */
149 149
     public function title()
150 150
     {
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
     /**
155 155
      * Get form description.
156 156
      *
157
-     * @return mixed
157
+     * @return string
158 158
      */
159 159
     public function description()
160 160
     {
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
     /**
230 230
      * Add form attributes.
231 231
      *
232
-     * @param string|array $attr
232
+     * @param string $attr
233 233
      * @param string       $value
234 234
      *
235 235
      * @return $this
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
     /**
392 392
      * Get all fields of form.
393 393
      *
394
-     * @return Field[]
394
+     * @return \Illuminate\Support\Collection
395 395
      */
396 396
     public function fields()
397 397
     {
Please login to merge, or discard this patch.
src/Actions/Action.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@
 block discarded – undo
146 146
         $class = get_called_class();
147 147
 
148 148
         if (!isset(static::$selectors[$class])) {
149
-            static::$selectors[$class] = $prefix . strtolower(class_basename($class));
149
+            static::$selectors[$class] = $prefix.strtolower(class_basename($class));
150 150
         }
151 151
 
152 152
         return static::$selectors[$class];
Please login to merge, or discard this patch.