@@ -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; |
@@ -16,6 +16,9 @@ discard block |
||
| 16 | 16 | public $context; |
| 17 | 17 | public $site; |
| 18 | 18 | |
| 19 | + /** |
|
| 20 | + * @param Jetpack_Site $site |
|
| 21 | + */ |
|
| 19 | 22 | function __construct( $site, $post, $context ) { |
| 20 | 23 | $this->post = $post; |
| 21 | 24 | $this->context = $context; |
@@ -508,6 +511,9 @@ discard block |
||
| 508 | 511 | return $suggestions; |
| 509 | 512 | } |
| 510 | 513 | |
| 514 | + /** |
|
| 515 | + * @param string $context |
|
| 516 | + */ |
|
| 511 | 517 | private function format_taxonomy( $taxonomy, $taxonomy_type, $context ) { |
| 512 | 518 | // Permissions |
| 513 | 519 | switch ( $context ) { |
@@ -267,6 +267,9 @@ |
||
| 267 | 267 | return ( false !== strpos( $url, 'facebook.com' ) ) ? true : false; |
| 268 | 268 | } |
| 269 | 269 | |
| 270 | + /** |
|
| 271 | + * @param integer $value |
|
| 272 | + */ |
|
| 270 | 273 | function normalize_int_value( $value, $default = 0, $max = 0, $min = 0 ) { |
| 271 | 274 | $value = (int) $value; |
| 272 | 275 | |
@@ -129,6 +129,9 @@ |
||
| 129 | 129 | echo '<p>' . sprintf( _x( 'Learn more about the %s', 'the Internet Defense League', 'jetpack' ), '<a href="https://www.internetdefenseleague.org/">Internet Defense League</a>' ) . '</p>'; |
| 130 | 130 | } |
| 131 | 131 | |
| 132 | + /** |
|
| 133 | + * @param string $field_name |
|
| 134 | + */ |
|
| 132 | 135 | public function select( $field_name, $options, $default = null ) { |
| 133 | 136 | echo '<select class="widefat" name="' . $this->get_field_name( $field_name ) . '">'; |
| 134 | 137 | foreach ( $options as $option_slug => $option_name ) { |
@@ -29,7 +29,6 @@ discard block |
||
| 29 | 29 | * |
| 30 | 30 | * Used to construct meta links in API responses |
| 31 | 31 | * |
| 32 | - * @param mixed $args Optional arguments to be appended to URL |
|
| 33 | 32 | * @return string Endpoint URL |
| 34 | 33 | **/ |
| 35 | 34 | function get_link() { |
@@ -129,7 +128,7 @@ discard block |
||
| 129 | 128 | * This method is used in get_link() to construct meta links for API responses. |
| 130 | 129 | * |
| 131 | 130 | * @param $template_path string The generic endpoint path, e.g. /sites/%s |
| 132 | - * @param $path string The current endpoint path, relative to the version, e.g. /sites/12345 |
|
| 131 | + * @param string $path string The current endpoint path, relative to the version, e.g. /sites/12345 |
|
| 133 | 132 | * @param $request_method string Request method used to access the endpoint path |
| 134 | 133 | * @return string The current version, or otherwise the maximum version available |
| 135 | 134 | */ |
@@ -4,10 +4,20 @@ discard block |
||
| 4 | 4 | require_once dirname( __FILE__ ) . '/class.json-api-site-base.php'; |
| 5 | 5 | |
| 6 | 6 | abstract class Abstract_Jetpack_Site extends SAL_Site { |
| 7 | + |
|
| 8 | + /** |
|
| 9 | + * @param string $name |
|
| 10 | + */ |
|
| 7 | 11 | abstract protected function get_constant( $name ); |
| 8 | 12 | |
| 13 | + /** |
|
| 14 | + * @param string $feature_name |
|
| 15 | + */ |
|
| 9 | 16 | abstract protected function current_theme_supports( $feature_name ); |
| 10 | 17 | |
| 18 | + /** |
|
| 19 | + * @param string $feature_name |
|
| 20 | + */ |
|
| 11 | 21 | abstract protected function get_theme_support( $feature_name ); |
| 12 | 22 | |
| 13 | 23 | abstract protected function get_mock_option( $name ); |
@@ -16,6 +26,9 @@ discard block |
||
| 16 | 26 | |
| 17 | 27 | abstract public function get_updates(); |
| 18 | 28 | |
| 29 | + /** |
|
| 30 | + * @return string |
|
| 31 | + */ |
|
| 19 | 32 | abstract protected function main_network_site(); |
| 20 | 33 | |
| 21 | 34 | abstract protected function wp_version(); |
@@ -292,7 +292,7 @@ discard block |
||
| 292 | 292 | /** |
| 293 | 293 | * Get the current user id |
| 294 | 294 | * |
| 295 | - * @return int |
|
| 295 | + * @return string |
|
| 296 | 296 | */ |
| 297 | 297 | public function get_user_id() { |
| 298 | 298 | if ( is_user_logged_in() ) { |
@@ -325,7 +325,7 @@ discard block |
||
| 325 | 325 | /** |
| 326 | 326 | * @param $product_id |
| 327 | 327 | * @param $quantity |
| 328 | - * @param $event |
|
| 328 | + * @param string $event |
|
| 329 | 329 | */ |
| 330 | 330 | public function capture_event_in_session_data( $product_id, $quantity, $event ) { |
| 331 | 331 | |
@@ -177,6 +177,9 @@ |
||
| 177 | 177 | return true; |
| 178 | 178 | } |
| 179 | 179 | |
| 180 | + /** |
|
| 181 | + * @param string $role |
|
| 182 | + */ |
|
| 180 | 183 | function current_user_can( $role ) { |
| 181 | 184 | return current_user_can( $role ); |
| 182 | 185 | } |
@@ -90,6 +90,9 @@ |
||
| 90 | 90 | echo $args['after_widget']; |
| 91 | 91 | } |
| 92 | 92 | |
| 93 | + /** |
|
| 94 | + * @param string $user_id |
|
| 95 | + */ |
|
| 93 | 96 | function goodreads_user_id_exists( $user_id ) { |
| 94 | 97 | $url = "https://www.goodreads.com/user/show/$user_id/"; |
| 95 | 98 | $response = wp_remote_head( |