recurring_events-2.0.x-dev/src/Entity/IncludedDatesInterface.php
src/Entity/IncludedDatesInterface.php
<?php
declare(strict_types=1);
namespace Drupal\recurring_events\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Provides an interface for defining Included dates entities.
*/
interface IncludedDatesInterface extends ConfigEntityInterface {
/**
* Get the start date.
*
* @return string
* The start date.
*/
public function start();
/**
* Get the end date.
*
* @return string
* The start date.
*/
public function end();
/**
* Set the start date.
*
* @var string $start
* The start date.
*
* @return $this
*/
public function setStart($start);
/**
* Set the end date.
*
* @var string $end
* The end date.
*
* @return $this
*/
public function setEnd($end);
}
