	public function getCurrentDate(): Calendar
	{
		if ($this->currentDate) {
			return $this->currentDate;
		}

		$date = new Calendar('now', null, $this->configuration);
		return $date;
	}