Skip to content

Commit

Permalink
tests updated and verified
Browse files Browse the repository at this point in the history
  • Loading branch information
shoxrux1996 committed Feb 1, 2024
1 parent 1fe6a14 commit 7f2c00c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Countries/Uzbekistan.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

namespace Spatie\Holidays\Countries;

use Carbon\CarbonImmutable;

class Uzbekistan extends Country
{
/**
Expand Down Expand Up @@ -123,6 +121,7 @@ public function countryCode(): string
return 'uz';
}

/** @return array<string, CarbonImmutable|string> */
protected function allHolidays(int $year): array
{
//After gaining independence on September 1, 1991, Uzbekistan introduced a new set of public holidays.
Expand All @@ -141,7 +140,7 @@ protected function allHolidays(int $year): array
], $this->variableHolidays($year));
}

/** @return array<string, CarbonImmutable> */
/** @return array<string, CarbonImmutable|string> */
protected function variableHolidays(int $year): array
{
$holidays = [];
Expand Down

0 comments on commit 7f2c00c

Please sign in to comment.