Completed
Push — master ( 247b53...16b162 )
by Jeroen De
03:24
created
src/MediaWiki/ParserHooks/CoordinatesFunction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
 	 *
94 94
 	 * @see ParserHook::getDefaultParameters
95 95
 	 *
96
-	 * @return array
96
+	 * @return string[]
97 97
 	 */
98 98
 	protected function getDefaultParameters( $type ) {
99 99
 		return [ 'location', 'format', 'directional' ];
Please login to merge, or discard this patch.
src/MediaWiki/ParserHooks/DistanceFunction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
 	 *
99 99
 	 * @param $type
100 100
 	 *
101
-	 * @return array
101
+	 * @return string[]
102 102
 	 */
103 103
 	protected function getDefaultParameters( $type ) {
104 104
 		return [ 'distance', 'unit', 'decimals' ];
Please login to merge, or discard this patch.
src/MediaWiki/ParserHooks/FindDestinationFunction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
 	 *
112 112
 	 * @see ParserHook::getDefaultParameters
113 113
 	 *
114
-	 * @return array
114
+	 * @return string[]
115 115
 	 */
116 116
 	protected function getDefaultParameters( $type ) {
117 117
 		return [ 'location', 'bearing', 'distance' ];
Please login to merge, or discard this patch.
src/MediaWiki/ParserHooks/GeocodeFunction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
 	 *
105 105
 	 * @see ParserHook::getDefaultParameters
106 106
 	 *
107
-	 * @return array
107
+	 * @return string[]
108 108
 	 */
109 109
 	protected function getDefaultParameters( $type ) {
110 110
 		return [ 'location' ];
Please login to merge, or discard this patch.
src/MediaWiki/ParserHooks/GeoDistanceFunction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
 	 *
114 114
 	 * @param $type
115 115
 	 *
116
-	 * @return array
116
+	 * @return string[]
117 117
 	 */
118 118
 	protected function getDefaultParameters( $type ) {
119 119
 		return [ 'location1', 'location2', 'unit', 'decimals' ];
Please login to merge, or discard this patch.
src/MediaWiki/ParserHooks/MapsDocFunction.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -131,8 +131,6 @@  discard block
 block discarded – undo
131 131
 	/**
132 132
 	 * Message function that takes into account the language parameter.
133 133
 	 *
134
-	 * @param string $key
135
-	 * @param ... $args
136 134
 	 *
137 135
 	 * @return string
138 136
 	 */
@@ -193,7 +191,7 @@  discard block
 block discarded – undo
193 191
 	 *
194 192
 	 * @see ParserHook::getDefaultParameters
195 193
 	 *
196
-	 * @return array
194
+	 * @return string[]
197 195
 	 */
198 196
 	protected function getDefaultParameters( $type ) {
199 197
 		return [ 'service', 'language' ];
Please login to merge, or discard this patch.
src/SemanticMW/DataValues/CoordinateValue.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -63,6 +63,7 @@  discard block
 block discarded – undo
63 63
 
64 64
 	/**
65 65
 	 * @see SMWDataValue::parseUserValue
66
+	 * @param string $value
66 67
 	 */
67 68
 	protected function parseUserValue( $value ) {
68 69
 		if ( !is_string( $value ) ) {
@@ -112,6 +113,9 @@  discard block
 block discarded – undo
112 113
 		}
113 114
 	}
114 115
 
116
+	/**
117
+	 * @return string
118
+	 */
115 119
 	private function parserDistance( $distance ) {
116 120
 		if ( $distance !== false ) {
117 121
 			$distance = substr( trim( $distance ), 0, -1 );
Please login to merge, or discard this patch.
src/SemanticMW/ResultPrinters/QueryHandler.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 	}
170 170
 
171 171
 	/**
172
-	 * @return Location[]
172
+	 * @return \Generator
173 173
 	 */
174 174
 	public function getLocations(): iterable {
175 175
 		while ( ( $row = $this->queryResult->getNext() ) !== false ) {
@@ -410,7 +410,7 @@  discard block
 block discarded – undo
410 410
 	/**
411 411
 	 * Get the icon for a row.
412 412
 	 *
413
-	 * @param array $row
413
+	 * @param SMWResultArray[] $row
414 414
 	 *
415 415
 	 * @return string
416 416
 	 */
Please login to merge, or discard this patch.
src/SemanticMW/ResultPrinters/MapPrinter.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -205,6 +205,10 @@
 block discarded – undo
205 205
 		return $location->getJSONObject();
206 206
 	}
207 207
 
208
+	/**
209
+	 * @param string $iconUrl
210
+	 * @param string $visitedIconUrl
211
+	 */
208 212
 	private function getJsonForStaticLocations( array $staticLocations, array $params, $iconUrl, $visitedIconUrl ) {
209 213
 		$locationsJson = [];
210 214
 
Please login to merge, or discard this patch.