Completed
Push — oldjunk ( e9510e )
by Jeroen De
08:00
created
includes/parserhooks/Maps_MapsDoc.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -138,8 +138,6 @@  discard block
 block discarded – undo
138 138
 	 *
139 139
 	 * @since 1.0.1
140 140
 	 *
141
-	 * @param string $key
142
-	 * @param ... $args
143 141
 	 *
144 142
 	 * @return string
145 143
 	 */
@@ -208,7 +206,7 @@  discard block
 block discarded – undo
208 206
 	 *
209 207
 	 * @since 1.0
210 208
 	 *
211
-	 * @return array
209
+	 * @return string[]
212 210
 	 */
213 211
 	protected function getDefaultParameters( $type ) {
214 212
 		return [ 'service', 'language' ];
Please login to merge, or discard this patch.
SemanticMaps/src/queryprinters/SM_MapPrinter.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -187,6 +187,10 @@
 block discarded – undo
187 187
 		return $location->getJSONObject();
188 188
 	}
189 189
 
190
+	/**
191
+	 * @param string $iconUrl
192
+	 * @param string $visitedIconUrl
193
+	 */
190 194
 	private function getJsonForStaticLocations( array $staticLocations, array $params, $iconUrl, $visitedIconUrl ) {
191 195
 		/**
192 196
 		 * @var Parser $wgParser
Please login to merge, or discard this patch.
src/Semantic/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.
includes/Maps_Mapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
 	/**
69 69
 	 * This function returns the definitions for the parameters used by every map feature.
70 70
 	 *
71
-	 * @return array
71
+	 * @return ParamProcessor\IParamDefinition[]
72 72
 	 */
73 73
 	public static function getCommonParameters() {
74 74
 		$params = [];
Please login to merge, or discard this patch.