Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Polish holidays #154

Merged
merged 2 commits into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions src/Countries/Poland.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?php

namespace Spatie\Holidays\Countries;

use Carbon\CarbonImmutable;

class Poland extends Country
{
public function countryCode(): string
{
return 'pl';
}

/** @return array<string, CarbonImmutable|string> */
protected function allHolidays(int $year): array
{
return array_merge([
'Nowy Rok' => '01-01',
'Święto Trzech Króli' => '01-06',
'Święto Pracy' => '05-01',
'Święto Konstytucji 3 Maja' => '05-03',
'Święto Wojska Polskiego, Wniebowzięcie Najświętszej Maryi Panny' => '08-15',
'Wszystkich Świętych' => '11-01',
'Święto Niepodległości' => '11-11',
'Boże Narodzenie' => '12-25',
'Drugi Dzień Bożego Narodzenia' => '12-26',
], $this->variableHolidays($year));
}

/** @return array<string, CarbonImmutable> */
protected function variableHolidays(int $year): array
{
$easter = CarbonImmutable::createFromTimestamp(easter_date($year))->setTimezone('Europe/Warsaw');

return [
'Wielkanoc' => $easter,
'Poniedziałek Wielkanocny' => $easter->addDay(),
'Zielone Świątki' => $easter->addWeeks(7),
'Boże Ciało' => $easter->addDays(60),
];
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
[
{
"name": "Nowy Rok",
"date": "2024-01-01"
},
{
"name": "\u015awi\u0119to Trzech Kr\u00f3li",
"date": "2024-01-06"
},
{
"name": "Wielkanoc",
"date": "2024-03-31"
},
{
"name": "Poniedzia\u0142ek Wielkanocny",
"date": "2024-04-01"
},
{
"name": "\u015awi\u0119to Pracy",
"date": "2024-05-01"
},
{
"name": "\u015awi\u0119to Konstytucji 3 Maja",
"date": "2024-05-03"
},
{
"name": "Zielone \u015awi\u0105tki",
"date": "2024-05-19"
},
{
"name": "Bo\u017ce Cia\u0142o",
"date": "2024-05-30"
},
{
"name": "\u015awi\u0119to Wojska Polskiego, Wniebowzi\u0119cie Naj\u015bwi\u0119tszej Maryi Panny",
"date": "2024-08-15"
},
{
"name": "Wszystkich \u015awi\u0119tych",
"date": "2024-11-01"
},
{
"name": "\u015awi\u0119to Niepodleg\u0142o\u015bci",
"date": "2024-11-11"
},
{
"name": "Bo\u017ce Narodzenie",
"date": "2024-12-25"
},
{
"name": "Drugi Dzie\u0144 Bo\u017cego Narodzenia",
"date": "2024-12-26"
}
]
18 changes: 18 additions & 0 deletions tests/Countries/PolandTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

namespace Spatie\Holidays\Tests\Countries;

use Carbon\CarbonImmutable;
use Spatie\Holidays\Holidays;

it('can calculate polish holidays', function () {
CarbonImmutable::setTestNowAndTimezone('2024-01-01');

$holidays = Holidays::for(country: 'pl')->get();

expect($holidays)
->toBeArray()
->not()->toBeEmpty();

expect(formatDates($holidays))->toMatchSnapshot();
});