@@ -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 | |
@@ -699,8 +699,7 @@ discard block |
||
| 699 | 699 | * Render the events |
| 700 | 700 | * |
| 701 | 701 | * @param string $url (default: '') |
| 702 | - * @param string $context (default: 'widget') or 'shortcode' |
|
| 703 | - * @return mixed bool|string false on failure, rendered HTML string on success. |
|
| 702 | + * @return false|string bool|string false on failure, rendered HTML string on success. |
|
| 704 | 703 | */ |
| 705 | 704 | public function render( $url = '', $args = array() ) { |
| 706 | 705 | |
@@ -857,8 +856,7 @@ discard block |
||
| 857 | 856 | * Wrapper function for iCalendarReader->render() |
| 858 | 857 | * |
| 859 | 858 | * @param string $url (default: '') |
| 860 | - * @param string $context (default: 'widget') or 'shortcode' |
|
| 861 | - * @return mixed bool|string false on failure, rendered HTML string on success. |
|
| 859 | + * @return false|string bool|string false on failure, rendered HTML string on success. |
|
| 862 | 860 | */ |
| 863 | 861 | function icalendar_render_events( $url = '', $args = array() ) { |
| 864 | 862 | $ical = new iCalendarReader(); |
@@ -1404,7 +1404,7 @@ |
||
| 1404 | 1404 | /** |
| 1405 | 1405 | * Migration routine for moving safecss from wp_options to wp_posts to support revisions |
| 1406 | 1406 | * |
| 1407 | - * @return void |
|
| 1407 | + * @return false|null |
|
| 1408 | 1408 | */ |
| 1409 | 1409 | static function upgrade() { |
| 1410 | 1410 | $css = get_option( 'safecss' ); |
@@ -24,6 +24,9 @@ discard block |
||
| 24 | 24 | return isset( $args['arguments'] ) ? json_decode( $args['arguments'] ) : array(); |
| 25 | 25 | } |
| 26 | 26 | |
| 27 | + /** |
|
| 28 | + * @param double $gmt_time |
|
| 29 | + */ |
|
| 27 | 30 | protected function is_cron_locked( $gmt_time ) { |
| 28 | 31 | // The cron lock: a unix timestamp from when the cron was spawned. |
| 29 | 32 | $doing_cron_transient = $this->get_cron_lock(); |
@@ -33,6 +36,9 @@ discard block |
||
| 33 | 36 | return $doing_cron_transient; |
| 34 | 37 | } |
| 35 | 38 | |
| 39 | + /** |
|
| 40 | + * @param string $doing_wp_cron |
|
| 41 | + */ |
|
| 36 | 42 | protected function maybe_unlock_cron( $doing_wp_cron ) { |
| 37 | 43 | if ( $this->get_cron_lock() == $doing_wp_cron ) { |
| 38 | 44 | delete_transient( 'doing_cron' ); |
@@ -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; |
@@ -93,14 +93,24 @@ |
||
| 93 | 93 | * So that we can test. |
| 94 | 94 | */ |
| 95 | 95 | |
| 96 | + /** |
|
| 97 | + * @param string $class |
|
| 98 | + * @param string $method |
|
| 99 | + */ |
|
| 96 | 100 | public function method_exists( $class, $method ) { |
| 97 | 101 | return method_exists( $class, $method ); |
| 98 | 102 | } |
| 99 | 103 | |
| 104 | + /** |
|
| 105 | + * @param string $class |
|
| 106 | + */ |
|
| 100 | 107 | public function class_exists( $class ) { |
| 101 | 108 | return class_exists( $class ); |
| 102 | 109 | } |
| 103 | 110 | |
| 111 | + /** |
|
| 112 | + * @param string $function |
|
| 113 | + */ |
|
| 104 | 114 | public function function_exists( $function ) { |
| 105 | 115 | return function_exists( $function ); |
| 106 | 116 | } |
@@ -163,7 +163,7 @@ |
||
| 163 | 163 | /** |
| 164 | 164 | * Iterates through expected items ( plugins or themes ) and compares them to actual results. |
| 165 | 165 | * |
| 166 | - * @param $items 'plugin' or 'theme' |
|
| 166 | + * @param string $items 'plugin' or 'theme' |
|
| 167 | 167 | */ |
| 168 | 168 | private function log_items( $items ) { |
| 169 | 169 | if ( ! isset( $this->expected[ $items ] ) ) { |
@@ -488,7 +488,7 @@ discard block |
||
| 488 | 488 | * Our [portfolio] shortcode. |
| 489 | 489 | * Prints Portfolio data styled to look good on *any* theme. |
| 490 | 490 | * |
| 491 | - * @return portfolio_shortcode_html |
|
| 491 | + * @return string |
|
| 492 | 492 | */ |
| 493 | 493 | static function portfolio_shortcode( $atts ) { |
| 494 | 494 | // Default attributes |
@@ -621,7 +621,7 @@ discard block |
||
| 621 | 621 | * The Portfolio shortcode loop. |
| 622 | 622 | * |
| 623 | 623 | * @todo add theme color styles |
| 624 | - * @return html |
|
| 624 | + * @return string |
|
| 625 | 625 | */ |
| 626 | 626 | static function portfolio_shortcode_html( $atts ) { |
| 627 | 627 | |
@@ -713,6 +713,7 @@ discard block |
||
| 713 | 713 | /** |
| 714 | 714 | * Individual project class |
| 715 | 715 | * |
| 716 | + * @param integer $portfolio_index_number |
|
| 716 | 717 | * @return string |
| 717 | 718 | */ |
| 718 | 719 | static function get_project_class( $portfolio_index_number, $columns ) { |
@@ -820,7 +821,7 @@ discard block |
||
| 820 | 821 | /** |
| 821 | 822 | * Displays the author of the current portfolio project. |
| 822 | 823 | * |
| 823 | - * @return html |
|
| 824 | + * @return string |
|
| 824 | 825 | */ |
| 825 | 826 | static function get_project_author() { |
| 826 | 827 | $html = '<div class="project-author">'; |
@@ -837,7 +838,7 @@ discard block |
||
| 837 | 838 | /** |
| 838 | 839 | * Display the featured image if it's available |
| 839 | 840 | * |
| 840 | - * @return html |
|
| 841 | + * @return string|null |
|
| 841 | 842 | */ |
| 842 | 843 | static function get_portfolio_thumbnail_link( $post_id ) { |
| 843 | 844 | if ( has_post_thumbnail( $post_id ) ) { |
@@ -525,7 +525,7 @@ discard block |
||
| 525 | 525 | * Our [testimonial] shortcode. |
| 526 | 526 | * Prints Testimonial data styled to look good on *any* theme. |
| 527 | 527 | * |
| 528 | - * @return jetpack_testimonial_shortcode_html |
|
| 528 | + * @return string |
|
| 529 | 529 | */ |
| 530 | 530 | static function jetpack_testimonial_shortcode( $atts ) { |
| 531 | 531 | // Default attributes |
@@ -588,7 +588,7 @@ discard block |
||
| 588 | 588 | /** |
| 589 | 589 | * The Testimonial shortcode loop. |
| 590 | 590 | * |
| 591 | - * @return html |
|
| 591 | + * @return string |
|
| 592 | 592 | */ |
| 593 | 593 | static function jetpack_testimonial_shortcode_html( $atts ) { |
| 594 | 594 | // Default query arguments |
@@ -662,6 +662,7 @@ discard block |
||
| 662 | 662 | /** |
| 663 | 663 | * Individual testimonial class |
| 664 | 664 | * |
| 665 | + * @param integer $testimonial_index_number |
|
| 665 | 666 | * @return string |
| 666 | 667 | */ |
| 667 | 668 | static function get_testimonial_class( $testimonial_index_number, $columns, $image ) { |
@@ -708,7 +709,7 @@ discard block |
||
| 708 | 709 | /** |
| 709 | 710 | * Display the featured image if it's available |
| 710 | 711 | * |
| 711 | - * @return html |
|
| 712 | + * @return string|null |
|
| 712 | 713 | */ |
| 713 | 714 | static function get_testimonial_thumbnail_link( $post_id ) { |
| 714 | 715 | if ( has_post_thumbnail( $post_id ) ) { |