Completed
Pull Request — master (#88)
by
unknown
01:34
created
src/Html.php 2 patches
Doc Comments   +2 added lines, -6 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
     /**
43 43
      * @param string|null $href
44
-     * @param string|null $text
44
+     * @param string $contents
45 45
      *
46 46
      * @return \Spatie\Html\Elements\A
47 47
      */
@@ -53,8 +53,6 @@  discard block
 block discarded – undo
53 53
     }
54 54
 
55 55
      /**
56
-     * @param string|null $href
57
-     * @param string|null $text
58 56
      *
59 57
      * @return \Spatie\Html\Elements\I
60 58
      */
@@ -66,7 +64,7 @@  discard block
 block discarded – undo
66 64
 
67 65
     /**
68 66
      * @param string|null $type
69
-     * @param string|null $text
67
+     * @param string $contents
70 68
      *
71 69
      * @return \Spatie\Html\Elements\Button
72 70
      */
@@ -314,7 +312,6 @@  discard block
 block discarded – undo
314 312
     }
315 313
 
316 314
     /**
317
-     * @param string|null $value
318 315
      *
319 316
      * @return \Spatie\Html\Elements\Input
320 317
      */
@@ -516,7 +513,6 @@  discard block
 block discarded – undo
516 513
      * a public alias for `old`.
517 514
      *
518 515
      * @param string $name
519
-     * @param mixed $value
520 516
      *
521 517
      * @return mixed
522 518
      */
Please login to merge, or discard this patch.
Unused Use Statements   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -2,27 +2,27 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Html;
4 4
 
5
-use Spatie\Html\Elements\A;
5
+use Illuminate\Contracts\Support\Htmlable;
6 6
 use Illuminate\Http\Request;
7
+use Illuminate\Support\Collection;
8
+use Illuminate\Support\HtmlString;
9
+use Illuminate\Support\Traits\Macroable;
10
+use Spatie\Html\Elements\A;
11
+use Spatie\Html\Elements\Button;
7 12
 use Spatie\Html\Elements\Div;
13
+use Spatie\Html\Elements\Element;
14
+use Spatie\Html\Elements\Fieldset;
8 15
 use Spatie\Html\Elements\File;
9 16
 use Spatie\Html\Elements\Form;
10
-use Spatie\Html\Elements\Span;
17
+use Spatie\Html\Elements\I;
18
+use Spatie\Html\Elements\Img;
11 19
 use Spatie\Html\Elements\Input;
12 20
 use Spatie\Html\Elements\Label;
13
-use Spatie\Html\Elements\Button;
14 21
 use Spatie\Html\Elements\Legend;
15 22
 use Spatie\Html\Elements\Option;
16 23
 use Spatie\Html\Elements\Select;
17
-use Spatie\Html\Elements\Element;
18
-use Illuminate\Support\Collection;
19
-use Illuminate\Support\HtmlString;
20
-use Spatie\Html\Elements\Fieldset;
24
+use Spatie\Html\Elements\Span;
21 25
 use Spatie\Html\Elements\Textarea;
22
-use Illuminate\Support\Traits\Macroable;
23
-use Illuminate\Contracts\Support\Htmlable;
24
-use Spatie\Html\Elements\Img;
25
-use Spatie\Html\Elements\I;
26 26
 
27 27
 class Html
28 28
 {
Please login to merge, or discard this patch.