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