generated from Nodarx/template
15 lines
295 B
PHP
15 lines
295 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Gricob\IMAP\Protocol\Command\Argument\Search;
|
|
|
|
use Gricob\IMAP\Protocol\Command\Argument\Date;
|
|
|
|
readonly class Since extends Date implements Criteria
|
|
{
|
|
public function __toString(): string
|
|
{
|
|
return 'SINCE '.parent::__toString();
|
|
}
|
|
} |