From 8d74054a8185581001fa61a8663cbde91cb90916 Mon Sep 17 00:00:00 2001 From: Benjamin Morel Date: Tue, 7 Jan 2020 16:09:47 +0100 Subject: [PATCH] Fix missing doc --- tests/LocalDateTimeTest.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/LocalDateTimeTest.php b/tests/LocalDateTimeTest.php index 80a08ef..929d3bf 100644 --- a/tests/LocalDateTimeTest.php +++ b/tests/LocalDateTimeTest.php @@ -1345,6 +1345,10 @@ public function providerToDateTime() * @param int $year The year. * @param int $month The month. * @param int $day The day-of-month. + * @param int $hour The hour-of-day. + * @param int $minute The minute-of-hour. + * @param int $second The second-of-minute. + * @param int $nano The nano-of-second. * @param string $expected The expected result string. */ public function testJsonSerialize(int $year, int $month, int $day, int $hour, int $minute, int $second, int $nano, string $expected) @@ -1358,6 +1362,10 @@ public function testJsonSerialize(int $year, int $month, int $day, int $hour, in * @param int $year The year. * @param int $month The month. * @param int $day The day-of-month. + * @param int $hour The hour-of-day. + * @param int $minute The minute-of-hour. + * @param int $second The second-of-minute. + * @param int $nano The nano-of-second. * @param string $expected The expected result string. */ public function testToString(int $year, int $month, int $day, int $hour, int $minute, int $second, int $nano, string $expected)