Files
shlink/module/Common/src/Util/DateRange.php
2018-09-29 12:52:32 +02:00

40 lines
722 B
PHP

<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\Common\Util;
use Cake\Chronos\Chronos;
final class DateRange
{
/**
* @var Chronos|null
*/
private $startDate;
/**
* @var Chronos|null
*/
private $endDate;
public function __construct(?Chronos $startDate = null, ?Chronos $endDate = null)
{
$this->startDate = $startDate;
$this->endDate = $endDate;
}
public function getStartDate(): ?Chronos
{
return $this->startDate;
}
public function getEndDate(): ?Chronos
{
return $this->endDate;
}
public function isEmpty(): bool
{
return $this->startDate === null && $this->endDate === null;
}
}