Completed
Branch master (e75327)
by Fenz
02:48
created
libs/Embedment/CodeEmbedment.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 	 *
15 15
 	 * @param  \Htsl\ReadingBuffer\Line $line
16 16
 	 *
17
-	 * @return \Htsl\Embedment\Contracts
17
+	 * @return CodeEmbedment
18 18
 	 */
19 19
 	public function parseLine( Line$line ):parent
20 20
 	{
Please login to merge, or discard this patch.
libs/Embedment/CssEmbedment.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 	 *
15 15
 	 * @param  \Htsl\ReadingBuffer\Line $line
16 16
 	 *
17
-	 * @return \Htsl\Embedment\Contracts
17
+	 * @return CssEmbedment
18 18
 	 */
19 19
 	public function parseLine( Line$line ):parent
20 20
 	{
Please login to merge, or discard this patch.
libs/Embedment/JsEmbedment.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 	 *
23 23
 	 * @param  \Htsl\ReadingBuffer\Line $line
24 24
 	 *
25
-	 * @return \Htsl\Embedment\Contracts
25
+	 * @return JsEmbedment
26 26
 	 */
27 27
 	public function parseLine( Line$line ):parent
28 28
 	{
Please login to merge, or discard this patch.
libs/Embedment/PhpEmbedment.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 	 *
15 15
 	 * @param  \Htsl\ReadingBuffer\Line $line
16 16
 	 *
17
-	 * @return \Htsl\Embedment\Contracts
17
+	 * @return PhpEmbedment
18 18
 	 */
19 19
 	public function parseLine( Line$line ):parent
20 20
 	{
Please login to merge, or discard this patch.
libs/Embedment/TextEmbedment.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 	 *
15 15
 	 * @param  \Htsl\ReadingBuffer\Line $line
16 16
 	 *
17
-	 * @return \Htsl\Embedment\Contracts
17
+	 * @return TextEmbedment
18 18
 	 */
19 19
 	public function parseLine( Line$line ):parent
20 20
 	{
Please login to merge, or discard this patch.
libs/Htsl.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
123 123
 	/**
124 124
 	 * Getting the config of Htsl.
125 125
 	 *
126
-	 * @param  string $key
126
+	 * @param  string $keys
127 127
 	 *
128 128
 	 * @return mixed
129 129
 	 */
Please login to merge, or discard this patch.
libs/Parser/Document.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
 	/**
173 173
 	 * Alias of getContent.
174 174
 	 *
175
-	 * @return sting
175
+	 * @return string
176 176
 	 */
177 177
 	public function __toString():string
178 178
 	{
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 	 * Getting the config of type of this document.
212 212
 	 *
213 213
 	 * @param  [ string, ] ...$keys
214
-	 * @return mixed
214
+	 * @return string
215 215
 	 */
216 216
 	public function getConfig( string...$keys )
217 217
 	{
Please login to merge, or discard this patch.
libs/Parser/Node/TagNode.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,7 +90,6 @@  discard block
 block discarded – undo
90 90
 	/**
91 91
 	 * Close this tag node, and returning node closer.
92 92
 	 *
93
-	 * @param  \Htsl\ReadingBuffer\Line   $closerLine  The line when node closed.
94 93
 	 *
95 94
 	 * @return string
96 95
 	 */
@@ -208,7 +207,7 @@  discard block
 block discarded – undo
208 207
 	/**
209 208
 	 * Parsing #ids .classes ^titles [styles] %event{>listeners<} and {other attributes}
210 209
 	 *
211
-	 * @return \Htsl\Parser\Node\TagNode
210
+	 * @return string
212 211
 	 */
213 212
 	protected function parseCommonAttributes():string
214 213
 	{
Please login to merge, or discard this patch.
libs/ReadingBuffer/Contracts/ABuffer.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
 	/**
40 40
 	 * Get a line of the document.
41
-	 * @return \Htsl\ReadingBuffer\Line
41
+	 * @return string
42 42
 	 */
43 43
 	public function getFileName():string
44 44
 	{
@@ -48,8 +48,8 @@  discard block
 block discarded – undo
48 48
 	/**
49 49
 	 * Getting another file reference file of this buffer.
50 50
 	 *
51
-	 * @param  string $filePath
52 51
 	 *
52
+	 * @param string $fileName
53 53
 	 * @return \Htsl\ReadingBuffer\Contracts\ABuffer
54 54
 	 */
55 55
 	abstract public function goSide( $fileName ):self;
Please login to merge, or discard this patch.