*/ protected array $icons = []; /** * @param array $icons */ public function register(array $icons): void { $this->icons = [ ...$this->icons, ...$icons, ]; } public function resolve(string $name): ?string { return $this->icons[$name] ?? null; } }