52 lines
987 B
PHP
52 lines
987 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2021 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCA\Calendar\Service\Appointments;
|
|
|
|
use DateTimeImmutable;
|
|
use JsonSerializable;
|
|
|
|
/**
|
|
* @psalm-immutable
|
|
*/
|
|
class Interval implements JsonSerializable {
|
|
/** @var int */
|
|
private $start;
|
|
|
|
/** @var int */
|
|
private $end;
|
|
|
|
public function __construct(int $start, int $end) {
|
|
$this->start = $start;
|
|
$this->end = $end;
|
|
}
|
|
|
|
public function getStart(): int {
|
|
return $this->start;
|
|
}
|
|
|
|
public function getEnd(): int {
|
|
return $this->end;
|
|
}
|
|
|
|
public function getStartAsObject(): DateTimeImmutable {
|
|
return (new DateTimeImmutable())->setTimestamp($this->start);
|
|
}
|
|
|
|
public function getEndAsObject(): DateTimeImmutable {
|
|
return (new DateTimeImmutable())->setTimestamp($this->end);
|
|
}
|
|
|
|
#[\Override]
|
|
public function jsonSerialize(): array {
|
|
return [
|
|
'start' => $this->start,
|
|
'end' => $this->end,
|
|
];
|
|
}
|
|
}
|