email; } /** * Устанавливает почту. Тег ФФД: 1008, 1117. * * @param string $email * @return $this * @throws AtolEmailTooLongException * @throws AtolEmailValidateException */ public function setEmail(string $email) { $email = trim($email); if (strlen($email) > 64) { throw new AtolEmailTooLongException($email, 64); } if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { throw new AtolEmailValidateException($email); } $this->email = $email; return $this; } }