Completed
Push — master ( e9a56b...a7a34c )
by Jeroen De
03:44 queued 01:02
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/ValueDescriptions/AreaDescription.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
 	 * FIXME: store specific code should be in the store component
97 97
 	 *
98 98
 	 * @param string $tableName
99
-	 * @param array $fieldNames
99
+	 * @param string[] $fieldNames
100 100
 	 * @param DatabaseBase $dbs
101 101
 	 *
102 102
 	 * @return string|false
Please login to merge, or discard this patch.
src/MapsFunctions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
 	/**
73 73
 	 * This function returns the definitions for the parameters used by every map feature.
74 74
 	 *
75
-	 * @return array
75
+	 * @return \ParamProcessor\IParamDefinition[]
76 76
 	 */
77 77
 	public static function getCommonParameters() {
78 78
 		$params = [];
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.