*/ abstract class UserEmail { use UserField; /** @var string */ private $email; public function __construct(User $user, string $email) { $this->user = $user; $this->email = $email; } public function getEmail(): string { return $this->email; } }