2 declare(strict_types=1);
19 if (!preg_match(
'#^\s*(==|!=|[<>]=?|after|since|before|until)?\s*(.+?)\s*$#i', $test, $matches)) {
20 throw new \InvalidArgumentException(sprintf(
'Don\'t understand "%s" as a date test.', $test));
24 $date = new \DateTime($matches[2]);
27 throw new \InvalidArgumentException(sprintf(
'"%s" is not a valid date.', $matches[2]));
30 $operator = $matches[1] ??
'==';
32 if (
'since' === $operator ||
'after' === $operator) {
36 if (
'until' === $operator ||
'before' === $operator) {
setOperator(string $operator)
__construct(string $test)
DateComparator constructor.
setTarget(string $target)