golden hour
/home/doctorbruno/public_html/taeionline.com/support/include/laminas-mail/src/Protocol/Pop3
⬆️ Go Up
Upload
File/Folder
Size
Actions
Response.php
567 B
Del
OK
Xoauth2
-
Del
OK
Edit: Response.php
<?php declare(strict_types=1); namespace Laminas\Mail\Protocol\Pop3; /** * POP3 response value object * * @internal */ final class Response { /** @var string $status */ private $status; /** @var string $message */ private $message; public function __construct(string $status, string $message) { $this->status = $status; $this->message = $message; } public function status(): string { return $this->status; } public function message(): string { return $this->message; } }
Save