@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | /** |
28 | 28 | * Set a name |
29 | 29 | * |
30 | - * @return the current tag object |
|
30 | + * @return Tag current tag object |
|
31 | 31 | */ |
32 | 32 | |
33 | 33 | public function setName(string $name) : Tag { |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | /** |
41 | 41 | * Set an attribute |
42 | 42 | * |
43 | - * @return the current tag object |
|
43 | + * @return Tag current tag object |
|
44 | 44 | */ |
45 | 45 | |
46 | 46 | public function setAttribute(string $name, string $value) : Tag { |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | /** |
54 | 54 | * Set multiple attributes |
55 | 55 | * |
56 | - * @return the current tag object |
|
56 | + * @return Tag current tag object |
|
57 | 57 | */ |
58 | 58 | |
59 | 59 | public function setAttributes(array $attributes) : Tag { |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | /** |
67 | 67 | * Set contents. The method expects a block, a string, or null |
68 | 68 | * |
69 | - * @return the current tag object |
|
69 | + * @return Tag current tag object |
|
70 | 70 | */ |
71 | 71 | |
72 | 72 | public function setContents($contents) : Tag { |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | /** |
109 | 109 | * Get the tag as a block |
110 | 110 | * |
111 | - * @return the self-closing tag if no valid contents have been set, otherwise the regular tag |
|
111 | + * @return Template\Block self-closing tag if no valid contents have been set, otherwise the regular tag |
|
112 | 112 | */ |
113 | 113 | |
114 | 114 | public function getBlock() : Template\Block { |