properties)) { return $this->properties[$key]; } else { return null; } } public function __set(string $key, $value): void { $this->properties[$key] = $value; } public function list(): array { return $this->properties; } }