From 8b7feb37a2d9d118f3bc351facbacc28a4937640 Mon Sep 17 00:00:00 2001 From: Corey Taylor Date: Tue, 17 Oct 2023 02:40:58 -0500 Subject: [PATCH] Sync endOfDay() description --- src/ChronosInterface.php | 4 ++-- src/Traits/ModifierTrait.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ChronosInterface.php b/src/ChronosInterface.php index f7b80b6..9238316 100644 --- a/src/ChronosInterface.php +++ b/src/ChronosInterface.php @@ -1160,8 +1160,8 @@ public function secondsUntilEndOfDay(): int; public function startOfDay(): self; /** - * Sets the time to end of day - either - * 23:59:59 or 23:59:59.999999 if `$microseconds` is true. + * Sets the time to 23:59:59 or 23:59:59.999999 + * if `$microseconds` is true. * * @param bool $microseconds Whether to set microseconds * @return static diff --git a/src/Traits/ModifierTrait.php b/src/Traits/ModifierTrait.php index 04b6148..13a3c8a 100644 --- a/src/Traits/ModifierTrait.php +++ b/src/Traits/ModifierTrait.php @@ -908,8 +908,8 @@ public function startOfDay(): ChronosInterface } /** - * Sets the time to end of day - either - * 23:59:59 or 23:59:59.999999 if `$microseconds` is true. + * Sets the time to 23:59:59 or 23:59:59.999999 + * if `$microseconds` is true. * * @param bool $microseconds Whether to set microseconds * @return static