19 declare(strict_types=1);
39 private ?
Closure $symbol_decorator = null;
48 throw new LogicException(
'first argument and return type of closure must be type-hinted to \ILIAS\UI\Component\Symbol\Symbol');
50 if ($this->symbol_decorator instanceof
Closure) {
51 $existing = $this->symbol_decorator;
52 $this->symbol_decorator =
static function (
Symbol $c) use ($symbol_decorator, $existing):
Symbol {
53 $component = $existing(
$c);
55 return $symbol_decorator($component);
58 $this->symbol_decorator = $symbol_decorator;
69 return $this->symbol_decorator;
76 if (count($r->getParameters()) !== 1) {
79 $first_param_type = $r->getParameters()[0]->getType();
80 if ($first_param_type instanceof
ReflectionType && $first_param_type->getName() !== Symbol::class) {
83 $return_type = $r->getReturnType();
87 return $return_type->getName() === Symbol::class;
Interface isGlobalScreenItem.
addSymbolDecorator(Closure $symbol_decorator)