@@ -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 ) { |
@@ -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; |
@@ -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(); |
@@ -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; |
@@ -233,6 +236,9 @@ discard block |
||
| 233 | 236 | return false; |
| 234 | 237 | } |
| 235 | 238 | |
| 239 | + /** |
|
| 240 | + * @param string $role |
|
| 241 | + */ |
|
| 236 | 242 | function current_user_can( $role ) { |
| 237 | 243 | return current_user_can( $role ); |
| 238 | 244 | } |
@@ -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(); |