Completed
Push — lol-mw ( 3d65e2 )
by Jeroen De
05:04
created
includes/Maps_DisplayMapRenderer.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -148,6 +148,10 @@
 block discarded – undo
148 148
 		return $locationJsonObjects;
149 149
 	}
150 150
 
151
+	/**
152
+	 * @param string $iconUrl
153
+	 * @param string $visitedIconUrl
154
+	 */
151 155
 	private function getLocationJsonObject( Location $location, array $params, $iconUrl, $visitedIconUrl, Parser $parserClone ) {
152 156
 		$jsonObj = $location->getJSONObject( $params['title'], $params['label'], $iconUrl, '', '', $visitedIconUrl );
153 157
 
Please login to merge, or discard this patch.
SemanticMaps/src/queryprinters/SM_QueryHandler.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
 	}
240 240
 
241 241
 	/**
242
-	 * @return array
242
+	 * @return Element[]
243 243
 	 */
244 244
 	public function getShapes() {
245 245
 		$this->findShapes();
@@ -515,7 +515,7 @@  discard block
 block discarded – undo
515 515
 	/**
516 516
 	 * Get the icon for a row.
517 517
 	 *
518
-	 * @param array $row
518
+	 * @param SMWResultArray[] $row
519 519
 	 *
520 520
 	 * @return string
521 521
 	 */
Please login to merge, or discard this patch.
src/Semantic/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.
includes/parserhooks/Maps_Coordinates.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
 	 *
111 111
 	 * @since 0.7
112 112
 	 *
113
-	 * @return array
113
+	 * @return string[]
114 114
 	 */
115 115
 	protected function getDefaultParameters( $type ) {
116 116
 		return [ 'location', 'format', 'directional' ];
Please login to merge, or discard this patch.
includes/parserhooks/Maps_Distance.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.
includes/parserhooks/Maps_Finddestination.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
 	 *
128 128
 	 * @since 0.7
129 129
 	 *
130
-	 * @return array
130
+	 * @return string[]
131 131
 	 */
132 132
 	protected function getDefaultParameters( $type ) {
133 133
 		return [ 'location', 'bearing', 'distance' ];
Please login to merge, or discard this patch.
includes/parserhooks/Maps_Geocode.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
 	 *
122 122
 	 * @since 0.7
123 123
 	 *
124
-	 * @return array
124
+	 * @return string[]
125 125
 	 */
126 126
 	protected function getDefaultParameters( $type ) {
127 127
 		return [ 'location' ];
Please login to merge, or discard this patch.
includes/parserhooks/Maps_Geodistance.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.
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.