Completed
Branch master (d00748)
by Jeroen
05:27
created
src/BaseElement.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -3,14 +3,14 @@
 block discarded – undo
3 3
 namespace Spatie\Html;
4 4
 
5 5
 use BadMethodCallException;
6
+use Illuminate\Contracts\Support\Arrayable;
7
+use Illuminate\Contracts\Support\Htmlable;
6 8
 use Illuminate\Support\Collection;
7 9
 use Illuminate\Support\HtmlString;
8
-use Spatie\Html\Exceptions\MissingTag;
9
-use Spatie\Html\Exceptions\InvalidHtml;
10 10
 use Illuminate\Support\Traits\Macroable;
11 11
 use Spatie\Html\Exceptions\InvalidChild;
12
-use Illuminate\Contracts\Support\Htmlable;
13
-use Illuminate\Contracts\Support\Arrayable;
12
+use Spatie\Html\Exceptions\InvalidHtml;
13
+use Spatie\Html\Exceptions\MissingTag;
14 14
 
15 15
 abstract class BaseElement implements Htmlable, HtmlElement, Arrayable
16 16
 {
Please login to merge, or discard this patch.
src/Elements/Select.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Html\Elements;
4 4
 
5
+use Illuminate\Support\Collection;
5 6
 use Illuminate\Support\Str;
6
-use Spatie\Html\Selectable;
7 7
 use Spatie\Html\BaseElement;
8
-use Illuminate\Support\Collection;
8
+use Spatie\Html\Selectable;
9 9
 
10 10
 class Select extends BaseElement
11 11
 {
Please login to merge, or discard this patch.
src/Html.php 1 patch
Unused Use Statements   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -2,26 +2,26 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Html;
4 4
 
5
-use Spatie\Html\Elements\A;
6
-use Spatie\Html\Elements\I;
7 5
 use Illuminate\Http\Request;
6
+use Illuminate\Support\Collection;
7
+use Illuminate\Support\HtmlString;
8
+use Illuminate\Support\Traits\Macroable;
9
+use Spatie\Html\Elements\A;
10
+use Spatie\Html\Elements\Button;
8 11
 use Spatie\Html\Elements\Div;
9
-use Spatie\Html\Elements\Img;
12
+use Spatie\Html\Elements\Element;
13
+use Spatie\Html\Elements\Fieldset;
10 14
 use Spatie\Html\Elements\File;
11 15
 use Spatie\Html\Elements\Form;
12
-use Spatie\Html\Elements\Span;
16
+use Spatie\Html\Elements\I;
17
+use Spatie\Html\Elements\Img;
13 18
 use Spatie\Html\Elements\Input;
14 19
 use Spatie\Html\Elements\Label;
15
-use Spatie\Html\Elements\Button;
16 20
 use Spatie\Html\Elements\Legend;
17 21
 use Spatie\Html\Elements\Option;
18 22
 use Spatie\Html\Elements\Select;
19
-use Spatie\Html\Elements\Element;
20
-use Illuminate\Support\Collection;
21
-use Illuminate\Support\HtmlString;
22
-use Spatie\Html\Elements\Fieldset;
23
+use Spatie\Html\Elements\Span;
23 24
 use Spatie\Html\Elements\Textarea;
24
-use Illuminate\Support\Traits\Macroable;
25 25
 
26 26
 class Html
27 27
 {
Please login to merge, or discard this patch.