Files
provider_imap/lib/Client/Protocol/Response/ContinuationResponse.php
2026-05-08 00:16:43 -04:00

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;
}
}