mirror of
https://github.com/shlinkio/shlink.git
synced 2026-02-28 04:03:12 +08:00
36 lines
698 B
PHP
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;
|
|
}
|
|
}
|