generated from Nodarx/template
29 lines
539 B
PHP
29 lines
539 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KTXM\ProviderImap\Client\Protocol\Response;
|
|
|
|
final class GreetingResponse implements ResponseInterface
|
|
{
|
|
public function __construct(
|
|
private readonly string $status,
|
|
private readonly string $text,
|
|
private readonly string $raw,
|
|
) {}
|
|
|
|
public function status(): string
|
|
{
|
|
return $this->status;
|
|
}
|
|
|
|
public function text(): string
|
|
{
|
|
return $this->text;
|
|
}
|
|
|
|
public function raw(): string
|
|
{
|
|
return $this->raw;
|
|
}
|
|
} |