Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 444 Bytes

CHANGELOG.md

File metadata and controls

15 lines (11 loc) · 444 Bytes

1.x to 2.x

  • $iso is now required. As a result, the order of method arguments has changed.
\Checkdomain\Holiday\Util::isHoliday($iso, $date = 'now', $state = null);
\Checkdomain\Holiday\Util::getHoliday($iso, $date = 'now', $state = null);

instead of

\Checkdomain\Holiday\Util::isHoliday($date = 'now', $iso = null, $state = null);
\Checkdomain\Holiday\Util::getHoliday($date = 'now', $iso = null, $state = null);