generated from Nodarx/template
e51c65bf19
Signed-off-by: Sebastian Krupinski <root@LAPTOP-7DVOR6NC>
17 lines
307 B
PHP
17 lines
307 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Gricob\IMAP\Protocol\Command\Argument;
|
|
|
|
final readonly class QuotedString implements Argument
|
|
{
|
|
public function __construct(private string $value)
|
|
{
|
|
}
|
|
|
|
public function __toString(): string
|
|
{
|
|
return sprintf('"%s"', $this->value);
|
|
}
|
|
} |