Completed
Push — master ( 87972f...9ffe58 )
by Carsten
02:01
created
block/ListTrait.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -68,6 +68,9 @@  discard block
 block discarded – undo
68 68
 		return $this->consumeList($lines, $current, $block, 'ul');
69 69
 	}
70 70
 
71
+	/**
72
+	 * @param string $type
73
+	 */
71 74
 	private function consumeList($lines, $current, $block, $type)
72 75
 	{
73 76
 		$item = 0;
@@ -191,7 +194,15 @@  discard block
 block discarded – undo
191 194
 	}
192 195
 
193 196
 	abstract protected function parseBlocks($lines);
197
+
198
+	/**
199
+	 * @param string $text
200
+	 */
194 201
 	abstract protected function parseInline($text);
195 202
 	abstract protected function renderAbsy($absy);
203
+
204
+	/**
205
+	 * @param integer $current
206
+	 */
196 207
 	abstract protected function detectLineType($lines, $current);
197 208
 }
Please login to merge, or discard this patch.
block/TableTrait.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -116,5 +116,9 @@
 block discarded – undo
116 116
 	}
117 117
 
118 118
 	abstract protected function parseInline($text);
119
+
120
+	/**
121
+	 * @return string
122
+	 */
119 123
 	abstract protected function renderAbsy($absy);
120 124
 }
Please login to merge, or discard this patch.
inline/LinkTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 
45 45
 	/**
46 46
 	 * Remove backslash from escaped characters
47
-	 * @param $text
47
+	 * @param string $text
48 48
 	 * @return string
49 49
 	 */
50 50
 	protected function replaceEscape($text)
Please login to merge, or discard this patch.