Files
shlink/module/Common/src/Util/DateRange.php
2018-11-20 19:30:27 +01:00

36 lines
698 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;
}
}