generated from Nodarx/template
19 lines
398 B
PHP
19 lines
398 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Gricob\IMAP\Protocol\Command;
|
|
|
|
use Gricob\IMAP\Protocol\Command\Argument\QuotedString;
|
|
|
|
final readonly class LogInCommand extends Command
|
|
{
|
|
public function __construct(string $user, string $password)
|
|
{
|
|
parent::__construct(
|
|
'LOGIN',
|
|
new QuotedString($user),
|
|
new QuotedString($password)
|
|
);
|
|
}
|
|
} |