instances[$key] = $factory; } public function get(string $key): mixed { if(!isset($this->instances[$key])) { throw new Exception("No instance found for {$key}"); } return $this->instances[$key]($this); } }