generated from Nodarx/template
16 lines
337 B
PHP
16 lines
337 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Gricob\IMAP\Protocol\Command\Argument\Search;
|
|
|
|
final readonly class To implements Criteria
|
|
{
|
|
public function __construct(private string $value) {}
|
|
|
|
public function __toString(): string
|
|
{
|
|
return 'TO "' . str_replace(['"', '\\'], ['\\"', '\\\\'], $this->value) . '"';
|
|
}
|
|
}
|