From 0fb5b433077d5592d0397c48a88d194d316ca7fe Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Tue, 22 Mar 2016 17:46:27 +0000 Subject: [PATCH] Docs: Normalize `Walker_Comment` method parameter docs spacing following [37051]. See #36300. Built from https://develop.svn.wordpress.org/trunk@37052 git-svn-id: http://core.svn.wordpress.org/trunk@37019 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-walker-comment.php | 28 ++++++++++++++-------------- wp-includes/version.php | 2 +- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/wp-includes/class-walker-comment.php b/wp-includes/class-walker-comment.php index 7659fab2c1..3065744e50 100644 --- a/wp-includes/class-walker-comment.php +++ b/wp-includes/class-walker-comment.php @@ -123,12 +123,12 @@ class Walker_Comment extends Walker { * @see Walker::display_element() * @see wp_list_comments() * - * @param WP_Comment $element Data object. - * @param array $children_elements List of elements to continue traversing. Passed by reference. - * @param int $max_depth Max depth to traverse. - * @param int $depth Depth of the current element. - * @param array $args An array of arguments. - * @param string $output Used to append additional content. Passed by reference. + * @param WP_Comment $element Comment data object. + * @param array $children_elements List of elements to continue traversing. Passed by reference. + * @param int $max_depth Max depth to traverse. + * @param int $depth Depth of the current element. + * @param array $args An array of arguments. + * @param string $output Used to append additional content. Passed by reference. */ public function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) { if ( !$element ) @@ -164,11 +164,11 @@ class Walker_Comment extends Walker { * @global int $comment_depth * @global WP_Comment $comment * - * @param string $output Used to append additional content. Passed by reference. + * @param string $output Used to append additional content. Passed by reference. * @param WP_Comment $comment Comment data object. - * @param int $depth Optional. Depth of the current comment in reference to parents. Default 0. - * @param array $args Optional. An array of arguments. Default empty array. - * @param int $id Optional. ID of the current comment. Default 0 (unused). + * @param int $depth Optional. Depth of the current comment in reference to parents. Default 0. + * @param array $args Optional. An array of arguments. Default empty array. + * @param int $id Optional. ID of the current comment. Default 0 (unused). */ public function start_el( &$output, $comment, $depth = 0, $args = array(), $id = 0 ) { $depth++; @@ -255,8 +255,8 @@ class Walker_Comment extends Walker { * @see wp_list_comments() * * @param WP_Comment $comment Comment to display. - * @param int $depth Depth of the current comment. - * @param array $args An array of arguments. + * @param int $depth Depth of the current comment. + * @param array $args An array of arguments. */ protected function comment( $comment, $depth, $args ) { if ( 'div' == $args['style'] ) { @@ -314,8 +314,8 @@ class Walker_Comment extends Walker { * @see wp_list_comments() * * @param WP_Comment $comment Comment to display. - * @param int $depth Depth of the current comment. - * @param array $args An array of arguments. + * @param int $depth Depth of the current comment. + * @param array $args An array of arguments. */ protected function html5_comment( $comment, $depth, $args ) { $tag = ( 'div' === $args['style'] ) ? 'div' : 'li'; diff --git a/wp-includes/version.php b/wp-includes/version.php index 9d424195c4..dc3b6f21ab 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-beta4-37051'; +$wp_version = '4.5-beta4-37052'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.