generated from Nodarx/template
15 lines
307 B
PHP
15 lines
307 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Gricob\IMAP\Protocol\Command;
|
|
|
|
use Gricob\IMAP\Protocol\Command\Argument\QuotedString;
|
|
|
|
readonly class SelectCommand extends Command
|
|
{
|
|
public function __construct(string $mailbox)
|
|
{
|
|
parent::__construct('SELECT', new QuotedString($mailbox));
|
|
}
|
|
} |