From 3e0ecb46ed859f4fd69c77dbd05f4f065ccca6c6 Mon Sep 17 00:00:00 2001 From: chris Date: Fri, 6 Sep 2024 10:26:33 +0200 Subject: [PATCH] feat: improve PHPDoc for get() (#232) Co-authored-by: Christopher Georg --- src/Holidays.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Holidays.php b/src/Holidays.php index 44f26099..9b950737 100755 --- a/src/Holidays.php +++ b/src/Holidays.php @@ -35,7 +35,7 @@ public static function has(string $country): bool return Country::find($country) !== null; } - /** @return array */ + /** @return array */ public function get(Country|string|null $country = null, ?int $year = null): array { $country ??= $this->country;