Completed
Push — master ( 5ec81c...d5ea32 )
by Richard
03:52
created
src/Config.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@  discard block
 block discarded – undo
35 35
 		return $this->headers;
36 36
 	}
37 37
 
38
+	/**
39
+	 * @return FilePath
40
+	 */
38 41
 	public function getFilePath() {
39 42
 		return $this->filePath;
40 43
 	}
@@ -63,6 +66,9 @@  discard block
 block discarded – undo
63 66
 		return $this->valueParser;
64 67
 	}
65 68
 
69
+	/**
70
+	 * @param string $name
71
+	 */
66 72
 	public function registerProperty($name, Property $property) {
67 73
 		$this->properties[$name] = $property;
68 74
 	}
Please login to merge, or discard this patch.
src/TSSFunction/Template.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@
 block discarded – undo
17 17
 		$this->xPath = $xPath;
18 18
 	}
19 19
 
20
+	/**
21
+	 * @param integer $index
22
+	 */
20 23
 	private function readArray($array, $index) {
21 24
 		return isset($array[$index]) ? $array[$index] : null;
22 25
 	}
Please login to merge, or discard this patch.