@@ -325,7 +325,7 @@ |
||
325 | 325 | * @access protected |
326 | 326 | * |
327 | 327 | * @param string $status Comment status. |
328 | - * @return string|bool New comment_approved value, false if the status doesn't affect it. |
|
328 | + * @return string|false New comment_approved value, false if the status doesn't affect it. |
|
329 | 329 | */ |
330 | 330 | protected function comment_status_to_approval_value( $status ) { |
331 | 331 | switch ( (string) $status ) { |
@@ -145,7 +145,7 @@ |
||
145 | 145 | * @param string $url URL of the content to be embedded. |
146 | 146 | * @param array $atts Shortcode attributes. |
147 | 147 | * |
148 | - * @return array $params Array of parameters to be used in Instagram query. |
|
148 | + * @return string $params Array of parameters to be used in Instagram query. |
|
149 | 149 | */ |
150 | 150 | function jetpack_instagram_get_allowed_parameters( $url, $atts = array() ) { |
151 | 151 | global $content_width; |
@@ -217,7 +217,7 @@ |
||
217 | 217 | * Render a slide |
218 | 218 | * |
219 | 219 | * @param array $media Media information. |
220 | - * @param array $index Index of the slide, first slide will be displayed by default, others hidden. |
|
220 | + * @param integer $index Index of the slide, first slide will be displayed by default, others hidden. |
|
221 | 221 | * |
222 | 222 | * @return string |
223 | 223 | */ |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | * Return an associative array of default values |
63 | 63 | * These values are used in new widgets as well as when sanitizing input. |
64 | 64 | * |
65 | - * @return array Array of default values for the Widget's options |
|
65 | + * @return string Array of default values for the Widget's options |
|
66 | 66 | */ |
67 | 67 | function defaults() { |
68 | 68 | return array( |
@@ -172,6 +172,9 @@ discard block |
||
172 | 172 | echo '</select></label></p></div>'; |
173 | 173 | } |
174 | 174 | |
175 | + /** |
|
176 | + * @param string $type |
|
177 | + */ |
|
175 | 178 | function _rss_link( $type, $args ) { |
176 | 179 | if ( 'posts' == $type ) { |
177 | 180 | $type_text = __( 'Posts', 'jetpack' ); |
@@ -220,7 +220,7 @@ |
||
220 | 220 | * Also used by @see self::test_request_port_constants |
221 | 221 | * |
222 | 222 | * @param mixed $http_x_forwarded_port value of $_SERVER[ 'HTTP_X_FORWARDED_PORT' ]. |
223 | - * @param mixed $server_port value of $_SERVER[ 'SERVER_PORT' ]. Null will unset the value. |
|
223 | + * @param string $server_port value of $_SERVER[ 'SERVER_PORT' ]. Null will unset the value. |
|
224 | 224 | * @param string $expeceted The expected output. Null will unset the value. |
225 | 225 | * @param boolean $ssl Whether to consider current request using SSL or not. |
226 | 226 | * |
@@ -595,7 +595,7 @@ |
||
595 | 595 | * |
596 | 596 | * @param array $dirty Unsantized data for the widget. |
597 | 597 | * |
598 | - * @return array Santized data. |
|
598 | + * @return integer Santized data. |
|
599 | 599 | */ |
600 | 600 | public function sanitize_instance( $dirty ) { |
601 | 601 | $now = (int) current_time( 'timestamp' ); // phpcs:ignore WordPress.DateTime.CurrentTimeTimestamp.Requested |
@@ -312,7 +312,7 @@ discard block |
||
312 | 312 | * Mock a set of constants. |
313 | 313 | * |
314 | 314 | * @param array $constants Array of sets with constants and their respective values. |
315 | - * @return phpmock\Mock The mock object. |
|
315 | + * @return phpmock\Mock[] The mock object. |
|
316 | 316 | */ |
317 | 317 | protected function mock_constants( $constants = array() ) { |
318 | 318 | $prepare_constant = function ( $constant ) { |
@@ -328,7 +328,7 @@ discard block |
||
328 | 328 | /** |
329 | 329 | * Mock $wpdb->get_var() and make it return a certain value. |
330 | 330 | * |
331 | - * @param mixed $return_value Return value of the function. |
|
331 | + * @param integer $return_value Return value of the function. |
|
332 | 332 | * |
333 | 333 | * PHPUnit\Framework\MockObject\MockObject The mock object. |
334 | 334 | */ |