Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2namespace Apie\Core\ValueObjects\Interfaces;
3
4use DateTimeImmutable;
5use DateTimeInterface;
6
7/**
8 * Value objects that can be mapped to a time-specific format.
9 */
10interface TimeRelatedValueObjectInterface extends StringValueObjectInterface
11{
12    public static function createFromDateTimeObject(DateTimeInterface $dateTime): self;
13    public static function createFromCurrentTime(): self;
14    public function toDate(): DateTimeImmutable;
15    /**
16     * The string should be in the format of this date string.
17     *
18     * @see https://www.php.net/manual/en/datetime.format.php#refsect1-datetime.format-parameters
19     */
20    public static function getDateFormat(): string;
21}