Skip to content

Commit

Permalink
Fix missing doc
Browse files Browse the repository at this point in the history
  • Loading branch information
BenMorel committed Jan 7, 2020
1 parent 3c6bb33 commit 8d74054
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/LocalDateTimeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit 8d74054

Please sign in to comment.