*/ private array $builders = []; public function getBuilder(string $name): BuilderInterface { if (!isset($this->builders[$name])) { throw new \Exception(sprintf('Builder with name "%s" not available from registry', $name)); } return $this->builders[$name]; } public function addBuilder(string $name, BuilderInterface $builder): void { $this->builders[$name] = $builder; } }