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