This repository has been archived on 2024-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
RelativeDateParser/src/enko/RelativeDateParser/RelativeDateType.php
2014-09-21 19:00:03 +02:00

8 lines
196 B
PHP
Executable file

<?php
namespace enko\RelativeDateParser;
abstract class RelativeDateType {
abstract public function getNext(\DateTime $now);
abstract public function getCurrent(\DateTime $now);
}