Skip to content

Commit

Permalink
Polish holidays (#154)
Browse files Browse the repository at this point in the history
* poland

* Fix polish holidays

---------

Co-authored-by: fizgiel <[email protected]>
  • Loading branch information
srsbiz and fizgiel authored Jan 22, 2024
1 parent f25e127 commit 8451167
Show file tree
Hide file tree
Showing 3 changed files with 114 additions and 0 deletions.
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();
});

0 comments on commit 8451167

Please sign in to comment.