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