Completed
Push — master ( ea4e13...3e4ffd )
by
unknown
21:07 queued 13s
created
src/DataValueDeserializer.php 1 patch
Doc Comments   +8 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 	 * @param DIProperty $property
47 47
 	 * @param array|string $value
48 48
 	 *
49
-	 * @return DataValue
49
+	 * @return DIProperty
50 50
 	 */
51 51
 	public function newDataValueFrom( DIProperty $property, $value ) {
52 52
 
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 	 *
77 77
 	 * @param array $value
78 78
 	 *
79
-	 * @return DIWikiPage|false
79
+	 * @return boolean
80 80
 	 */
81 81
 	public function newDiWikiPage( array $value ) {
82 82
 
@@ -114,6 +114,9 @@  discard block
 block discarded – undo
114 114
 		return $dataItem;
115 115
 	}
116 116
 
117
+	/**
118
+	 * @param DIProperty $property
119
+	 */
117 120
 	private function newDataValueFromPropertyObject( $property, $value ) {
118 121
 
119 122
 		try{
@@ -125,6 +128,9 @@  discard block
 block discarded – undo
125 128
 		return $dv;
126 129
 	}
127 130
 
131
+	/**
132
+	 * @param DIProperty $property
133
+	 */
128 134
 	private function newDataValueFromDataItem( $property, $dataItem = false ) {
129 135
 
130 136
 		if ( $dataItem === false ) {
Please login to merge, or discard this patch.
src/ByHttpRequest/JsonResponseParser.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 	/**
112 112
 	 * @since 1.0
113 113
 	 *
114
-	 * @return array
114
+	 * @return string
115 115
 	 */
116 116
 	public function getRawResponseResult() {
117 117
 		return $this->rawResponseResult;
@@ -192,6 +192,9 @@  discard block
 block discarded – undo
192 192
 		}
193 193
 	}
194 194
 
195
+	/**
196
+	 * @param string $hash
197
+	 */
195 198
 	private function addPropertyValues( $hash, $pk, $pvalues ) {
196 199
 
197 200
 		$property = DIProperty::newFromUserLabel( $pk );
Please login to merge, or discard this patch.
src/QueryResultFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 	 * @param Query $query
54 54
 	 * @param JsonResponseParser $jsonResponseParser
55 55
 	 *
56
-	 * @return QueryResult
56
+	 * @return boolean
57 57
 	 */
58 58
 	public function newByHttpRequestQueryResult( Query $query, JsonResponseParser $jsonResponseParser ) {
59 59
 
Please login to merge, or discard this patch.