. */ use Fisharebest\ExtCalendar\GregorianCalendar; /** * Class GregorianDate - Definitions for the Gregorian calendar */ class GregorianDate extends CalendarDate { /** {@inheritdoc} */ public function __construct($date) { $this->calendar = new GregorianCalendar; parent::__construct($date); } }