@@ -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' ); |
@@ -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 |