@@ -85,7 +85,7 @@ |
||
| 85 | 85 | * |
| 86 | 86 | * @param string $cron_name |
| 87 | 87 | * |
| 88 | - * @return bool |
|
| 88 | + * @return false|null |
|
| 89 | 89 | */ |
| 90 | 90 | public function activate_cron( $cron_name ) { |
| 91 | 91 | |
@@ -138,6 +138,7 @@ |
||
| 138 | 138 | /** |
| 139 | 139 | * Returns a class value, `output-the-content` by default. |
| 140 | 140 | * Used for themes with a 'Mixed' Blog Display so we can tell which output is by default. |
| 141 | + * @param string $new_class |
|
| 141 | 142 | */ |
| 142 | 143 | function jetpack_the_content_customizer_class( $new_class = null ) { |
| 143 | 144 | static $class; |
@@ -179,7 +179,7 @@ |
||
| 179 | 179 | * @param array $hosts |
| 180 | 180 | * @param string $api_base |
| 181 | 181 | * |
| 182 | - * @return array |
|
| 182 | + * @return string[] |
|
| 183 | 183 | */ |
| 184 | 184 | static function allowed_redirect_hosts( $hosts, $api_base = JETPACK__API_BASE ) { |
| 185 | 185 | if ( empty( $hosts ) ) { |
@@ -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 ) { |
@@ -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(); |
@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | /** |
| 246 | 246 | * A work-around / hack to make it possible to go to the media library with the add new box open. |
| 247 | 247 | * |
| 248 | - * @return bool |
|
| 248 | + * @return false|null |
|
| 249 | 249 | */ |
| 250 | 250 | public function print_in_footer_open_media_add_new() { |
| 251 | 251 | global $pagenow; |
@@ -339,7 +339,7 @@ discard block |
||
| 339 | 339 | /** |
| 340 | 340 | * @param array $extensions |
| 341 | 341 | * |
| 342 | - * @return array |
|
| 342 | + * @return string[] |
|
| 343 | 343 | */ |
| 344 | 344 | public function add_videopress_extenstion( $extensions ) { |
| 345 | 345 | $extensions[] = 'videopress'; |
@@ -63,6 +63,7 @@ |
||
| 63 | 63 | /** |
| 64 | 64 | * Updates user data |
| 65 | 65 | * |
| 66 | + * @param integer $user_id |
|
| 66 | 67 | * @return array |
| 67 | 68 | */ |
| 68 | 69 | public function update_user( $user_id, $blog_id ) { |
@@ -55,7 +55,7 @@ |
||
| 55 | 55 | * @access private |
| 56 | 56 | * @param string $key |
| 57 | 57 | * @param array $files |
| 58 | - * @return void |
|
| 58 | + * @return WP_Error|null |
|
| 59 | 59 | */ |
| 60 | 60 | function _jetpack_require_compat_file( $key, $files ) { |
| 61 | 61 | if ( ! is_string( $key ) ) { |
@@ -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( |