@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | * |
39 | 39 | * A null argument will log the file and line number of the l() call. |
40 | 40 | * |
41 | - * @param mixed $stuff Information to log. |
|
41 | + * @param string $stuff Information to log. |
|
42 | 42 | */ |
43 | 43 | function l( $stuff = null ) { |
44 | 44 | // Do nothing when debugging is off. |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | * |
167 | 167 | * @param string $name Timer name. |
168 | 168 | * |
169 | - * @return mixed void or elapsed time. |
|
169 | + * @return null|double void or elapsed time. |
|
170 | 170 | */ |
171 | 171 | function e( $name = '' ) { |
172 | 172 | static $times = array(); |
@@ -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, |
@@ -706,6 +706,11 @@ |
||
706 | 706 | return $post; |
707 | 707 | } |
708 | 708 | |
709 | + /** |
|
710 | + * @param string $id_field |
|
711 | + * @param integer $min_id |
|
712 | + * @param integer $max_id |
|
713 | + */ |
|
709 | 714 | private function calculate_checksum( $array, $id_field = null, $min_id = null, $max_id = null, $fields = null ) { |
710 | 715 | $this->checksum_fields[ get_current_blog_id() ] = $fields; |
711 | 716 |
@@ -102,6 +102,10 @@ |
||
102 | 102 | // asserts that two objects are the same if they're both "objectified", |
103 | 103 | // i.e. json_encoded and then json_decoded |
104 | 104 | // this is useful because we json encode everything sent to the server |
105 | + |
|
106 | + /** |
|
107 | + * @param string $message |
|
108 | + */ |
|
105 | 109 | protected function assertEqualsObject( $object_1, $object_2, $message = null ) { |
106 | 110 | $this->assertEquals( $this->objectify( $object_1 ), $this->objectify( $object_2 ), $message ); |
107 | 111 | } |
@@ -149,6 +149,9 @@ discard block |
||
149 | 149 | return array( 'test' ); |
150 | 150 | } |
151 | 151 | |
152 | + /** |
|
153 | + * @param string $name |
|
154 | + */ |
|
152 | 155 | function assertCallableIsSynced( $name, $value ) { |
153 | 156 | $this->assertEqualsObject( $value, $this->server_replica_storage->get_callable( $name ), 'Function ' . $name . ' didn\'t have the expected value of ' . json_encode( $value ) ); |
154 | 157 | } |
@@ -635,6 +638,9 @@ discard block |
||
635 | 638 | $this->assert_sanitized_post_type_default( $sanitized, $label ); |
636 | 639 | } |
637 | 640 | |
641 | + /** |
|
642 | + * @param string $label |
|
643 | + */ |
|
638 | 644 | function assert_sanitized_post_type_default( $sanitized, $label ) { |
639 | 645 | $this->assertEquals( $label, $sanitized->name ); |
640 | 646 | $this->assertEquals( 'Posts', $sanitized->label ); |
@@ -1201,7 +1207,7 @@ discard block |
||
1201 | 1207 | /** |
1202 | 1208 | * Test getting a hosting provider by a known function |
1203 | 1209 | * |
1204 | - * @return bool |
|
1210 | + * @return boolean|null |
|
1205 | 1211 | */ |
1206 | 1212 | public function test_get_hosting_provider_by_known_function() { |
1207 | 1213 | |
@@ -1310,7 +1316,7 @@ discard block |
||
1310 | 1316 | /** |
1311 | 1317 | * Create a recursive object. |
1312 | 1318 | * |
1313 | - * @return object |
|
1319 | + * @return stdClass |
|
1314 | 1320 | */ |
1315 | 1321 | function jetpack_recursive_banana() { |
1316 | 1322 | $banana = new stdClass(); |
@@ -219,6 +219,10 @@ |
||
219 | 219 | $this->assertEquals( get_post_meta( $post_id, '_feedback_akismet_values', true ), $meta_key_value ); |
220 | 220 | } |
221 | 221 | |
222 | + /** |
|
223 | + * @param string $value |
|
224 | + * @param string $type |
|
225 | + */ |
|
222 | 226 | function assertOptionIsSynced( $meta_key, $value, $type, $object_id ) { |
223 | 227 | $this->assertEqualsObject( $value, $this->server_replica_storage->get_metadata( $type, $object_id, $meta_key, true ), 'Synced option doesn\'t match local option.' ); |
224 | 228 | } |
@@ -286,6 +286,9 @@ |
||
286 | 286 | $this->assertTrue( in_array( 'foo_option_bar', $whitelist ) ); |
287 | 287 | } |
288 | 288 | |
289 | + /** |
|
290 | + * @param string $option_name |
|
291 | + */ |
|
289 | 292 | function assertOptionIsSynced( $option_name, $value ) { |
290 | 293 | $this->assertEqualsObject( $value, $this->server_replica_storage->get_option( $option_name ), 'Option ' . $option_name . ' did\'t have the extected value of ' . json_encode( $value ) ); |
291 | 294 | } |
@@ -125,6 +125,9 @@ |
||
125 | 125 | remove_filter( 'site_transient_update_plugins' , array( $this, 'set_update_plugin_transient' ) ); |
126 | 126 | } |
127 | 127 | |
128 | + /** |
|
129 | + * @param Silent_Upgrader_Skin $skin |
|
130 | + */ |
|
128 | 131 | function update_bulk_plugins( $skin ) { |
129 | 132 | require_once ABSPATH . 'wp-admin/includes/plugin-install.php'; |
130 | 133 | require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |