Completed
Push — master ( 7faa0b...742751 )
by Peter
02:10
created
src/Builder/DocComment.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -43,6 +43,9 @@  discard block
 block discarded – undo
43 43
 		self::$parsedFiles = [];
44 44
 	}
45 45
 
46
+	/**
47
+	 * @param Reflector $reflection
48
+	 */
46 49
 	public function get($reflection)
47 50
 	{
48 51
 		if ($reflection instanceof ReflectionClass)
@@ -142,6 +145,9 @@  discard block
 block discarded – undo
142 145
 		return isset(self::$fields[$class][$field]) ? self::$fields[$class][$field] : false;
143 146
 	}
144 147
 
148
+	/**
149
+	 * @param string $fqn
150
+	 */
145 151
 	private function processAnonymous(Reflector $reflection, $fqn)
146 152
 	{
147 153
 		if (!isset(self::$parsedFiles[$fqn]))
@@ -322,6 +328,9 @@  discard block
 block discarded – undo
322 328
 		return $fqn;
323 329
 	}
324 330
 
331
+	/**
332
+	 * @param integer $max
333
+	 */
325 334
 	private function getString($tokens, &$i, $max)
326 335
 	{
327 336
 		do
Please login to merge, or discard this patch.