@@ -177,10 +177,10 @@ |
||
177 | 177 | * @since 4.3.0 |
178 | 178 | * @since 4.6.0 Added public-api.wordpress.com as an allowed redirect |
179 | 179 | * |
180 | - * @param array $hosts |
|
180 | + * @param string[] $hosts |
|
181 | 181 | * @param string $api_base |
182 | 182 | * |
183 | - * @return array |
|
183 | + * @return string[] |
|
184 | 184 | */ |
185 | 185 | static function allowed_redirect_hosts( $hosts, $api_base = JETPACK__API_BASE ) { |
186 | 186 | if ( empty( $hosts ) ) { |
@@ -308,7 +308,7 @@ |
||
308 | 308 | * |
309 | 309 | * @since 4.4 |
310 | 310 | * @param string $title |
311 | - * @return int|WP_Error |
|
311 | + * @return string |
|
312 | 312 | */ |
313 | 313 | function videopress_create_new_media_item( $title, $guid = null ) { |
314 | 314 | $post = array( |
@@ -165,6 +165,9 @@ discard block |
||
165 | 165 | return $this->get_atomic_cloud_site_option( 'launch-status' ); |
166 | 166 | } |
167 | 167 | |
168 | + /** |
|
169 | + * @param string $option |
|
170 | + */ |
|
168 | 171 | function get_atomic_cloud_site_option( $option ) { |
169 | 172 | if ( ! jetpack_is_atomic_site() ) { |
170 | 173 | return false; |
@@ -247,6 +250,9 @@ discard block |
||
247 | 250 | return false; |
248 | 251 | } |
249 | 252 | |
253 | + /** |
|
254 | + * @param string $role |
|
255 | + */ |
|
250 | 256 | function current_user_can( $role ) { |
251 | 257 | return current_user_can( $role ); |
252 | 258 | } |
@@ -306,6 +312,7 @@ discard block |
||
306 | 312 | |
307 | 313 | /** |
308 | 314 | * Post functions |
315 | + * @param string $context |
|
309 | 316 | */ |
310 | 317 | |
311 | 318 | function wrap_post( $post, $context ) { |
@@ -383,7 +383,7 @@ |
||
383 | 383 | * @param string $filename File name. |
384 | 384 | * @param string $dir Temp directory. Dafault empty. |
385 | 385 | * |
386 | - * @return string|string[]|null |
|
386 | + * @return string |
|
387 | 387 | */ |
388 | 388 | public function get_temp_name( $filename, $dir = '' ) { |
389 | 389 | if ( empty( $dir ) ) { |
@@ -161,6 +161,9 @@ |
||
161 | 161 | return 'direct'; |
162 | 162 | } |
163 | 163 | |
164 | + /** |
|
165 | + * @param string $dir |
|
166 | + */ |
|
164 | 167 | function rmdir( $dir ) { |
165 | 168 | foreach ( scandir( $dir ) as $file ) { |
166 | 169 | if ( is_dir( $file ) ) |
@@ -199,6 +199,9 @@ |
||
199 | 199 | $this->assertEquals( $image_list, $images_extracted ); |
200 | 200 | } |
201 | 201 | |
202 | + /** |
|
203 | + * @return integer |
|
204 | + */ |
|
202 | 205 | private function add_test_post() { |
203 | 206 | $post_id = $this->factory->post->create( array( |
204 | 207 | 'post_author' => '1046316', |
@@ -410,7 +410,7 @@ |
||
410 | 410 | * |
411 | 411 | * @since 9.1.0 |
412 | 412 | * |
413 | - * @param array $story_media A representative array of the media in the story. Each is one of 'image', 'video', or 'videopress'. |
|
413 | + * @param string[] $story_media A representative array of the media in the story. Each is one of 'image', 'video', or 'videopress'. |
|
414 | 414 | * @param bool $wpcom_mode If true, handles VideoPress videos the way WP.com does. Defaults to false. |
415 | 415 | * @return array $post_info { |
416 | 416 | * An array of information about our post. |
@@ -139,6 +139,9 @@ |
||
139 | 139 | unregister_post_type( 'foo' ); |
140 | 140 | } |
141 | 141 | |
142 | + /** |
|
143 | + * @param boolean $should_have_publicized |
|
144 | + */ |
|
142 | 145 | function assertPublicized( $should_have_publicized, $post ) { |
143 | 146 | if ( $should_have_publicized ) { |
144 | 147 | $this->assertEquals( $post->ID, $this->publicized_post_id, 'Is not the same post ID' ); |
@@ -50,6 +50,9 @@ discard block |
||
50 | 50 | 'filter' => 'raw', |
51 | 51 | ); |
52 | 52 | |
53 | + /** |
|
54 | + * @param integer $id |
|
55 | + */ |
|
53 | 56 | function post( $id, $props = array() ) { |
54 | 57 | |
55 | 58 | $now = current_time( 'mysql' ); |
@@ -70,6 +73,9 @@ discard block |
||
70 | 73 | return new WP_Post( $post ); |
71 | 74 | } |
72 | 75 | |
76 | + /** |
|
77 | + * @param integer $id |
|
78 | + */ |
|
73 | 79 | function comment( $id, $post_id, $props = array() ) { |
74 | 80 | $now = current_time( 'mysql' ); |
75 | 81 | $now_gmt = get_gmt_from_date( $now ); |
@@ -88,6 +94,10 @@ discard block |
||
88 | 94 | return new WP_Comment( $comment ); |
89 | 95 | } |
90 | 96 | |
97 | + /** |
|
98 | + * @param integer $id |
|
99 | + * @param string $username |
|
100 | + */ |
|
91 | 101 | function user( $id, $username, $props = array() ) { |
92 | 102 | $now = current_time( 'mysql' ); |
93 | 103 | |
@@ -140,6 +150,9 @@ discard block |
||
140 | 150 | ); |
141 | 151 | } |
142 | 152 | |
153 | + /** |
|
154 | + * @param integer $id |
|
155 | + */ |
|
143 | 156 | function term( $id, $props = array() ) { |
144 | 157 | $term = (object) array_merge( |
145 | 158 | self::$default_term_props, |