setInContainer('name', $value); $this->set('lower', strtolower($value)); } public function getAddress(): string { return $this->get('name'); } public function getLower(): string { return $this->get('lower'); } public function isOptedOut(): bool { return $this->get('optOut'); } public function isInvalid(): bool { return $this->get('invalid'); } }