Completed
Branch master (2ae125)
by Marcel
10:16
created
src/Html/HtmlElement.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace BeyondCode\TagHelper\Html;
4 4
 
5
-use simplehtmldom_1_5\simple_html_dom_node;
6 5
 use BeyondCode\TagHelper\Exceptions\InvalidTagAttribute;
6
+use simplehtmldom_1_5\simple_html_dom_node;
7 7
 
8 8
 class HtmlElement
9 9
 {
Please login to merge, or discard this patch.
src/TagHelperCompiler.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -24,6 +24,10 @@
 block discarded – undo
24 24
         $this->files = $files;
25 25
     }
26 26
 
27
+    /**
28
+     * @param string $path
29
+     * @param string $compiled
30
+     */
27 31
     public function needsToBeRecompiled($path, $compiled)
28 32
     {
29 33
         return true;
Please login to merge, or discard this 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 BeyondCode\TagHelper;
4 4
 
5
+use BeyondCode\TagHelper\Html\HtmlElement;
6
+use Illuminate\Filesystem\Filesystem;
5 7
 use Illuminate\View\View;
6 8
 use Sunra\PhpSimple\HtmlDomParser;
7
-use Illuminate\Filesystem\Filesystem;
8
-use BeyondCode\TagHelper\Html\HtmlElement;
9 9
 
10 10
 class TagHelperCompiler
11 11
 {
Please login to merge, or discard this patch.