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 |
| 2 | namespace Apie\DateValueObjects\Interfaces; |
| 3 | |
| 4 | use Apie\Core\ValueObjects\Interfaces\TimeRelatedValueObjectInterface; |
| 5 | use Apie\DateValueObjects\Concerns\CanHaveDayIntervals; |
| 6 | |
| 7 | /** |
| 8 | * @see CanHaveDayIntervals |
| 9 | */ |
| 10 | interface WorksWithDays extends TimeRelatedValueObjectInterface |
| 11 | { |
| 12 | public function withDay(int $day): self; |
| 13 | public function tomorrow(): self; |
| 14 | public function yesterday(): self; |
| 15 | } |