Completed
Push — address-as-title ( feca68...38b79f )
by Peter
04:24
created
includes/iMappingService.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@  discard block
 block discarded – undo
25 25
 	 * @since 0.6.3
26 26
 	 * 
27 27
 	 * @param mixed $parserOrOut
28
+	 * @return void
28 29
 	 */
29 30
 	public function addDependencies( &$parserOrOut );
30 31
 	
@@ -46,6 +47,7 @@  discard block
 block discarded – undo
46 47
 	 * 
47 48
 	 * @param string $featureName
48 49
 	 * @param string $handlingClass
50
+	 * @return void
49 51
 	 */	
50 52
 	public function addFeature( $featureName, $handlingClass );
51 53
 	
Please login to merge, or discard this patch.
includes/Maps_DisplayMapRenderer.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 use Maps\Element;
3
-use Maps\Elements\Line;
4 3
 use Maps\Elements\Location;
5 4
 
6 5
 /**
Please login to merge, or discard this patch.
includes/Maps_DistanceParser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@
 block discarded – undo
152 152
 	 * 
153 153
 	 * @since 0.6.5
154 154
 	 * 
155
-	 * @param $distance String
155
+	 * @param string $distance String
156 156
 	 * 
157 157
 	 * @return string
158 158
 	 */
Please login to merge, or discard this patch.
includes/Maps_Layer.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
 	 *
128 128
 	 * @since 3.0
129 129
 	 *
130
-	 * @return string|null
130
+	 * @return string
131 131
 	 */
132 132
 	public function getName() {
133 133
 		return $this->name;
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 	 *
221 221
 	 * @since 3.0 (and before as abstract function since 0.7.2)
222 222
 	 *
223
-	 * @return array
223
+	 * @return ParamProcessor\IParamDefinition[]
224 224
 	 */
225 225
 	protected function getParameterDefinitions() {
226 226
 		$params = array();
@@ -269,7 +269,6 @@  discard block
 block discarded – undo
269 269
 	 *
270 270
 	 * @since 3.0
271 271
 	 *
272
-	 * @param string $name Name of the property value
273 272
 	 * @param Parser $parser
274 273
 	 *
275 274
 	 * @return array
Please login to merge, or discard this patch.
includes/Maps_MappingService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
 	 * @since 0.6.3
72 72
 	 *
73 73
 	 * @param string $serviceName
74
-	 * @param array $aliases
74
+	 * @param string[] $aliases
75 75
 	 */
76 76
 	public function __construct( $serviceName, array $aliases = array() ) {
77 77
 		$this->serviceName = $serviceName;
Please login to merge, or discard this patch.
includes/parserhooks/Maps_DisplayMap.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 	 *
28 28
 	 * @since 2.0
29 29
 	 *
30
-	 * @return array
30
+	 * @return string[]
31 31
 	 */
32 32
 	protected function getNames() {
33 33
 		return array( $this->getName(), 'display_point', 'display_points', 'display_line' );
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
 	 * 
168 168
 	 * @since 0.7
169 169
 	 * 
170
-	 * @return array
170
+	 * @return string[]
171 171
 	 */
172 172
 	protected function getDefaultParameters( $type ) {
173 173
 		return array( 'coordinates' );
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
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
 	 *
92 92
 	 * @param $type
93 93
 	 * 
94
-	 * @return array
94
+	 * @return string[]
95 95
 	 */
96 96
 	protected function getDefaultParameters( $type ) {
97 97
 		return array( 'location1', 'location2', 'unit', 'decimals' );
Please login to merge, or discard this patch.
includes/parserhooks/Maps_LayerDefinition.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 	 *
92 92
 	 * @since 3.0
93 93
 	 *
94
-	 * @return array
94
+	 * @return string[]
95 95
 	 */
96 96
 	protected function getDefaultParameters( $type ) {
97 97
 		return array( 'definition' );
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
 	 *
150 150
 	 * @since 3.0
151 151
 	 *
152
-	 * @param type $layer 
152
+	 * @param MapsLayer $layer 
153 153
 	 *
154 154
 	 * @return boolean whether $layer has been added to the store
155 155
 	 */
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
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 	 *
70 70
 	 * @since 1.0
71 71
 	 *
72
-	 * @return array
72
+	 * @return string[]
73 73
 	 */
74 74
 	protected function getDefaultParameters( $type ) {
75 75
 		return array( 'service', 'language' );
@@ -98,8 +98,6 @@  discard block
 block discarded – undo
98 98
 	 *
99 99
 	 * @since 1.0.1
100 100
 	 *
101
-	 * @param string $key
102
-	 * @param ... $args
103 101
 	 *
104 102
 	 * @return string
105 103
 	 */
Please login to merge, or discard this patch.