Completed
Branch master (1f585e)
by João Roberto P.
12:52
created
src/Tag.php 2 patches
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,6 @@  discard block
 block discarded – undo
25 25
     protected $contents;
26 26
 
27 27
     /**
28
-    * @param string $name
29 28
     */
30 29
     public function __construct($tagName, $attributes = [])
31 30
     {
@@ -59,7 +58,7 @@  discard block
 block discarded – undo
59 58
 
60 59
     /**
61 60
     * @param  String    $contents
62
-    * @return void
61
+    * @return Tag
63 62
     */
64 63
     public function add($contents)
65 64
     {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace JoaoRobertoPB\Htmlable;
4 4
 
5
+use JoaoRobertoPB\Htmlable\Contracts\HtmlAttributes;
5 6
 use JoaoRobertoPB\Htmlable\Contracts\Htmlable;
6 7
 use JoaoRobertoPB\Htmlable\Traits\HasAttributes;
7
-use JoaoRobertoPB\Htmlable\Contracts\HtmlAttributes;
8 8
 
9 9
 /**
10 10
 * Class Tag.
Please login to merge, or discard this patch.