generated from Nodarx/template
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);
|
|
}
|
|
} |