@@ -504,6 +504,9 @@ |
||
| 504 | 504 | ) ); |
| 505 | 505 | } |
| 506 | 506 | |
| 507 | + /** |
|
| 508 | + * @param string $content |
|
| 509 | + */ |
|
| 507 | 510 | protected function comment_hash( $content ) { |
| 508 | 511 | return 'c-' . substr( md5( $content ), 0, 8 ); |
| 509 | 512 | } |
@@ -35,6 +35,7 @@ discard block |
||
| 35 | 35 | /** |
| 36 | 36 | * Singleton implementation |
| 37 | 37 | * |
| 38 | + * @param string|false $ip_address |
|
| 38 | 39 | * @return object |
| 39 | 40 | */ |
| 40 | 41 | public static function instance( $ip_address ) { |
@@ -348,6 +349,9 @@ discard block |
||
| 348 | 349 | return $contents; |
| 349 | 350 | } |
| 350 | 351 | |
| 352 | + /** |
|
| 353 | + * @param string $message |
|
| 354 | + */ |
|
| 351 | 355 | function display_page( $title, $message, $back_button = false, $recovery_form = false ) { |
| 352 | 356 | |
| 353 | 357 | if ( ! headers_sent() ) { |
@@ -682,6 +682,9 @@ |
||
| 682 | 682 | $this->options_save_other( 'linkedin' ); |
| 683 | 683 | } |
| 684 | 684 | |
| 685 | + /** |
|
| 686 | + * @param string $service_name |
|
| 687 | + */ |
|
| 685 | 688 | function options_save_other( $service_name ) { |
| 686 | 689 | // Nonce check |
| 687 | 690 | check_admin_referer( 'save_' . $service_name . '_token_' . $_REQUEST['connection'] ); |
@@ -415,7 +415,7 @@ |
||
| 415 | 415 | * |
| 416 | 416 | * @param array $connections_data |
| 417 | 417 | * |
| 418 | - * @return array { |
|
| 418 | + * @return string { |
|
| 419 | 419 | * Array of content for generating connection form. |
| 420 | 420 | * |
| 421 | 421 | * @type string HTML content of form |
@@ -294,6 +294,9 @@ discard block |
||
| 294 | 294 | return $this->_options; |
| 295 | 295 | } |
| 296 | 296 | |
| 297 | + /** |
|
| 298 | + * @param string $option_name |
|
| 299 | + */ |
|
| 297 | 300 | public function get_option( $option_name ) { |
| 298 | 301 | $options = $this->get_options(); |
| 299 | 302 | |
@@ -1428,6 +1431,8 @@ discard block |
||
| 1428 | 1431 | * Enqueues assets needed to do async loading of related posts. |
| 1429 | 1432 | * |
| 1430 | 1433 | * @uses wp_enqueue_script, wp_enqueue_style, plugins_url |
| 1434 | + * @param boolean $script |
|
| 1435 | + * @param boolean $style |
|
| 1431 | 1436 | * @return null |
| 1432 | 1437 | */ |
| 1433 | 1438 | protected function _enqueue_assets( $script, $style ) { |
@@ -145,7 +145,7 @@ |
||
| 145 | 145 | * @param string $url URL of the content to be embedded. |
| 146 | 146 | * @param array $atts Shortcode attributes. |
| 147 | 147 | * |
| 148 | - * @return array $params Array of parameters to be used in Instagram query. |
|
| 148 | + * @return string $params Array of parameters to be used in Instagram query. |
|
| 149 | 149 | */ |
| 150 | 150 | function jetpack_instagram_get_allowed_parameters( $url, $atts = array() ) { |
| 151 | 151 | global $content_width; |
@@ -262,7 +262,7 @@ discard block |
||
| 262 | 262 | * Validate the require two step checkbox in Settings > General |
| 263 | 263 | * |
| 264 | 264 | * @since 2.7 |
| 265 | - * @return boolean |
|
| 265 | + * @return integer |
|
| 266 | 266 | **/ |
| 267 | 267 | public function validate_jetpack_sso_require_two_step( $input ) { |
| 268 | 268 | return ( ! empty( $input ) ) ? 1 : 0; |
@@ -287,7 +287,7 @@ discard block |
||
| 287 | 287 | * Validate the match by email check in Settings > General |
| 288 | 288 | * |
| 289 | 289 | * @since 2.9 |
| 290 | - * @return boolean |
|
| 290 | + * @return integer |
|
| 291 | 291 | **/ |
| 292 | 292 | public function validate_jetpack_sso_match_by_email( $input ) { |
| 293 | 293 | return ( ! empty( $input ) ) ? 1 : 0; |
@@ -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 ) { |
@@ -389,7 +389,7 @@ |
||
| 389 | 389 | /** |
| 390 | 390 | * Set the disconnect capability for multisite. |
| 391 | 391 | * |
| 392 | - * @param array $caps The capabilities array. |
|
| 392 | + * @param string[] $caps The capabilities array. |
|
| 393 | 393 | */ |
| 394 | 394 | public function set_multisite_disconnect_cap( $caps ) { |
| 395 | 395 | // Can individual site admins manage their own connection? |