-
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #28 Test and document getYearHolidays
- Loading branch information
1 parent
42876fa
commit b814dfb
Showing
4 changed files
with
78 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
<?php | ||
|
||
return array( | ||
'new-year' => '01-01', | ||
'easter-48' => '= easter -48', | ||
'easter-47' => '= easter -47', | ||
'03-24' => '03-24', | ||
'substitutes-03-24' => '= 03-24 if Tuesday then previous Monday and if Thursday then next Friday', | ||
'easter-3' => '= easter -3', | ||
'easter-2' => '= easter -2', | ||
'04-02' => '04-02', | ||
'substitutes-04-02' => '= 04-02 if Tuesday then previous Monday and if Thursday then next Friday', | ||
'05-01' => '05-01', | ||
'substitutes-05-01' => '= 05-01 if Tuesday then previous Monday and if Thursday then next Friday', | ||
'05-25' => '05-25', | ||
'substitutes-05-25' => '= 05-25 if Tuesday then previous Monday and if Thursday then next Friday', | ||
'06-20' => '06-20', | ||
'substitutes-06-20' => '= 06-20 if Tuesday then previous Monday and if Thursday then next Friday', | ||
'07-09' => '07-09', | ||
'3rd-monday-of-august' => '= third Monday of August', | ||
'10-12' => '= 10-12 if Tuesday,Wednesday then previous Monday and if Thursday,Friday,Saturday,Sunday then next Monday', | ||
'4th-monday-of-november' => '= fourth Monday of November', | ||
'12-08' => '12-08', | ||
'substitutes-12-08' => '= 12-08 if Tuesday then previous Monday and if Thursday then next Friday', | ||
'substitutes-12-24' => '= 12-24 if Tuesday then previous Monday', | ||
'christmas' => '12-25', | ||
'substitutes-12-25' => '= 12-25 if Thursday then next Friday', | ||
'new-year' => '01-01', | ||
'easter-48' => '= easter -48', | ||
'easter-47' => '= easter -47', | ||
'03-24' => '03-24', | ||
'substitutes-03-24' => '= 03-24 if Tuesday then previous Monday and if Thursday then next Friday', | ||
'easter-3' => '= easter -3', | ||
'easter-2' => '= easter -2', | ||
'day-of-the-veterans-and-the-fallen-of-malvinas-war' => '04-02', | ||
'substitutes-04-02' => '= 04-02 if Tuesday then previous Monday and if Thursday then next Friday', | ||
'05-01' => '05-01', | ||
'substitutes-05-01' => '= 05-01 if Tuesday then previous Monday and if Thursday then next Friday', | ||
'05-25' => '05-25', | ||
'substitutes-05-25' => '= 05-25 if Tuesday then previous Monday and if Thursday then next Friday', | ||
'06-20' => '06-20', | ||
'substitutes-06-20' => '= 06-20 if Tuesday then previous Monday and if Thursday then next Friday', | ||
'07-09' => '07-09', | ||
'3rd-monday-of-august' => '= third Monday of August', | ||
'10-12' => '= 10-12 if Tuesday,Wednesday then previous Monday and if Thursday,Friday,Saturday,Sunday then next Monday', | ||
'4th-monday-of-november' => '= fourth Monday of November', | ||
'12-08' => '12-08', | ||
'substitutes-12-08' => '= 12-08 if Tuesday then previous Monday and if Thursday then next Friday', | ||
'substitutes-12-24' => '= 12-24 if Tuesday then previous Monday', | ||
'christmas' => '12-25', | ||
'substitutes-12-25' => '= 12-25 if Thursday then next Friday', | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters