From ab0324a7297641594cafbb55b3ead746c6a4d376 Mon Sep 17 00:00:00 2001 From: "Drew Jaynes (DrewAPicture)" Date: Sat, 1 Nov 2014 04:31:00 +0000 Subject: [PATCH] Fix a couple of spacing and wrapping indents in the `WP_Date_Query::__construct()` hash notation. See [30142]. See #28063. git-svn-id: https://develop.svn.wordpress.org/trunk@30150 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/date.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/wp-includes/date.php b/src/wp-includes/date.php index 740acdb4b5..c5896c7f10 100644 --- a/src/wp-includes/date.php +++ b/src/wp-includes/date.php @@ -84,7 +84,8 @@ class WP_Date_Query { * @type string $relation Optional. The boolean relationship between the date queries. * Accepts 'OR', 'AND'. Default 'OR'. * @type array { - Optional. An array of first-order clause parameters, or another fully-formed date query. + * Optional. An array of first-order clause parameters, or another fully-formed date query. + * * @type string|array $before Optional. Date to retrieve posts before. Accepts strtotime()-compatible * string, or array of 'year', 'month', 'day' values. { * @@ -113,7 +114,7 @@ class WP_Date_Query { * @type bool $inclusive Optional. Include results from dates specified in 'before' or * 'after'. Default false. * @type int $year Optional. The four-digit year number. Default empty. Accepts - * any four-digit year. + * any four-digit year. * @type int $month Optional. The two-digit month number. Default empty. * Accepts numbers 1-12. * @type int $week Optional. The week number of the year. Default empty. @@ -124,8 +125,8 @@ class WP_Date_Query { * Accepts numbers 1-31. * @type int $dayofweek Optional. The day number of the week. Default empty. * Accepts numbers 1-7 (1 is Sunday). - * @type int $dayofweek_iso Optional. The day number of the week (ISO). Default empty. - * Accepts numbers 1-7 (1 is Monday). + * @type int $dayofweek_iso Optional. The day number of the week (ISO). Accepts numbers 1-7 + * (1 is Monday).Default empty. * @type int $hour Optional. The hour of the day. Default empty. Accepts numbers 0-23. * @type int $minute Optional. The minute of the hour. Default empty. Accepts * numbers 0-60.