generated from Nodarx/template
14 lines
226 B
PHP
14 lines
226 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Gricob\IMAP\Protocol\Command\Argument\Search;
|
|
|
|
final readonly class Unflagged implements Criteria
|
|
{
|
|
public function __toString(): string
|
|
{
|
|
return 'UNFLAGGED';
|
|
}
|
|
}
|