Passed
Push — master ( c2217b...c0f182 )
by Cahyadi
04:36 queued 02:01
created
src/Config.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -116,6 +116,9 @@
 block discarded – undo
116 116
 		return array_change_key_case($args, CASE_LOWER);
117 117
 	}
118 118
 
119
+	/**
120
+	 * @return string
121
+	 */
119 122
 	private function getMethod($name)
120 123
 	{
121 124
 		foreach(get_class_methods($this) as $method) {
Please login to merge, or discard this patch.
src/Parser.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@  discard block
 block discarded – undo
30 30
 	 */
31 31
 	public $bump;
32 32
 
33
+	/**
34
+	 * @param string $url
35
+	 */
33 36
 	function __construct($url)
34 37
 	{
35 38
 		parent::__construct($url);
@@ -46,7 +49,7 @@  discard block
 block discarded – undo
46 49
 	/**
47 50
 	 * Creates DOMXPath object from content
48 51
 	 * 
49
-	 * @return object
52
+	 * @return \DOMXPath
50 53
 	 */
51 54
 	protected function document(\DOMDocument $doc)
52 55
 	{
Please login to merge, or discard this patch.