@@ -196,7 +196,7 @@ |
||
196 | 196 | /** |
197 | 197 | * Just authenticates with the given Jetpack credentials. |
198 | 198 | * |
199 | - * @return bool|IXR_Error |
|
199 | + * @return string |
|
200 | 200 | */ |
201 | 201 | function test_connection() { |
202 | 202 | return JETPACK__VERSION; |
@@ -137,8 +137,8 @@ discard block |
||
137 | 137 | /** |
138 | 138 | * Plugin options getter |
139 | 139 | * |
140 | - * @param string|array $option Option name |
|
141 | - * @param mixed $default Default value |
|
140 | + * @param string $option Option name |
|
141 | + * @param string $default Default value |
|
142 | 142 | * |
143 | 143 | * @return mixed Option value |
144 | 144 | */ |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | * |
165 | 165 | * @param string $url |
166 | 166 | * |
167 | - * @return boolean |
|
167 | + * @return integer |
|
168 | 168 | */ |
169 | 169 | function soundcloud_url_has_tracklist( $url ) { |
170 | 170 | return preg_match( '/^(.+?)\/(sets|groups|playlists)\/(.+?)$/', $url ); |
@@ -27,6 +27,9 @@ |
||
27 | 27 | } |
28 | 28 | |
29 | 29 | |
30 | + /** |
|
31 | + * @param string $key |
|
32 | + */ |
|
30 | 33 | protected function get_locale( $key ) { |
31 | 34 | if ( 'locale' == $key ) { |
32 | 35 | if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { |
@@ -26,7 +26,6 @@ discard block |
||
26 | 26 | * |
27 | 27 | * Used to construct meta links in API responses |
28 | 28 | * |
29 | - * @param mixed $args Optional arguments to be appended to URL |
|
30 | 29 | * @return string Endpoint URL |
31 | 30 | **/ |
32 | 31 | function get_link() { |
@@ -117,7 +116,7 @@ discard block |
||
117 | 116 | * This method is used in get_link() to construct meta links for API responses. |
118 | 117 | * |
119 | 118 | * @param $template_path The generic endpoint path, e.g. /sites/%s |
120 | - * @param $path string The current endpoint path, relative to the version, e.g. /sites/12345 |
|
119 | + * @param string $path string The current endpoint path, relative to the version, e.g. /sites/12345 |
|
121 | 120 | * @param $method string Request method used to access the endpoint path |
122 | 121 | * @return string The current version, or otherwise the maximum version available |
123 | 122 | */ |
@@ -1341,6 +1341,7 @@ discard block |
||
1341 | 1341 | * timezone set in the options table for the blog or the GMT offset. |
1342 | 1342 | * |
1343 | 1343 | * @param datetime string |
1344 | + * @param string $date_string |
|
1344 | 1345 | * |
1345 | 1346 | * @return array( $local_time_string, $gmt_time_string ) |
1346 | 1347 | */ |
@@ -1458,6 +1459,10 @@ discard block |
||
1458 | 1459 | do_action( 'restapi_theme_init' ); |
1459 | 1460 | } |
1460 | 1461 | |
1462 | + /** |
|
1463 | + * @param string $from_hook |
|
1464 | + * @param string $to_hook |
|
1465 | + */ |
|
1461 | 1466 | function copy_hooks( $from_hook, $to_hook, $base_paths ) { |
1462 | 1467 | global $wp_filter; |
1463 | 1468 | foreach ( $wp_filter as $hook => $actions ) { |
@@ -23,6 +23,9 @@ |
||
23 | 23 | public $blog_id; |
24 | 24 | public $platform; |
25 | 25 | |
26 | + /** |
|
27 | + * @param WPORG_Platform $platform |
|
28 | + */ |
|
26 | 29 | public function __construct( $blog_id, $platform ) { |
27 | 30 | $this->blog_id = $blog_id; |
28 | 31 | $this->platform = $platform; |
@@ -120,6 +120,9 @@ discard block |
||
120 | 120 | return $response; |
121 | 121 | } |
122 | 122 | |
123 | + /** |
|
124 | + * @param string $field |
|
125 | + */ |
|
123 | 126 | protected function get_sal_post_by( $field, $field_value, $context ) { |
124 | 127 | global $blog_id; |
125 | 128 | |
@@ -132,6 +135,9 @@ discard block |
||
132 | 135 | return $post; |
133 | 136 | } |
134 | 137 | |
138 | + /** |
|
139 | + * @param string $context |
|
140 | + */ |
|
135 | 141 | private function render_response_keys( $post, $context, $keys ) { |
136 | 142 | foreach ( $keys as $key ) { |
137 | 143 | switch ( $key ) { |
@@ -7,6 +7,9 @@ discard block |
||
7 | 7 | public $id; |
8 | 8 | public $items_with_ids; |
9 | 9 | |
10 | + /** |
|
11 | + * @param string $id |
|
12 | + */ |
|
10 | 13 | public function __construct( $id, $items_with_ids ) { |
11 | 14 | $this->id = $id; |
12 | 15 | $this->items_with_ids = $items_with_ids; |
@@ -31,6 +34,9 @@ discard block |
||
31 | 34 | public $id; |
32 | 35 | private $row_iterator; |
33 | 36 | |
37 | + /** |
|
38 | + * @param string $id |
|
39 | + */ |
|
34 | 40 | function __construct( $id ) { |
35 | 41 | $this->id = str_replace( '-', '_', $id ); // necessary to ensure we don't have ID collisions in the SQL |
36 | 42 | $this->row_iterator = 0; |
@@ -303,6 +309,9 @@ discard block |
||
303 | 309 | return get_transient( $this->get_checkout_transient_name() ); |
304 | 310 | } |
305 | 311 | |
312 | + /** |
|
313 | + * @param string $checkout_id |
|
314 | + */ |
|
306 | 315 | private function set_checkout_id( $checkout_id ) { |
307 | 316 | return set_transient( $this->get_checkout_transient_name(), $checkout_id, 5*60 ); // 5 minute timeout |
308 | 317 | } |
@@ -181,7 +181,7 @@ |
||
181 | 181 | /** |
182 | 182 | * Backend function to abstract the xmlrpc function calls to wpcom. |
183 | 183 | * |
184 | - * @param $endpoint |
|
184 | + * @param string $endpoint |
|
185 | 185 | * @param $error_message |
186 | 186 | */ |
187 | 187 | function __process_ajax_proxy_request( $endpoint, $error_message ) { |