has($name)) { throw new Exception(_s('Component %1$s is not registered.', $name)); } return $this->components[$name]; } /** * Register component. * * @param string $name Component name. * @param object $instance Component class instance. * * @throws Exception when name is already registered. */ final public function register(string $name, object $instance): void { if ($this->has($name)) { throw new Exception(_s('Component %1$s already registered.', $name)); } $this->components[$name] = $instance; } /** * Check if a component has been registered. * * @param string $name Component name. * * @return bool */ final public function has(string $name): bool { return array_key_exists($name, $this->components); } /** * Magic method to allow short syntax for the component instance get. * * @param string $name Component name. * * @return object * * @throws Exception when component with $name is not found. */ final public function __get(string $name): object { return $this->get($name); } /** * Magic method to allow short syntax for the component registration. * * @param string $name Requested property name. * @param object $instance Component class instance. * * @throws Exception when name is already registered. */ final public function __set(string $name, object $instance): void { $this->register($name, $instance); } }