19 declare(strict_types=1);
41 private $symbol_decorator;
50 throw new LogicException(
'first argument and return type of closure must be type-hinted to \ILIAS\UI\Component\Symbol\Symbol');
52 if ($this->symbol_decorator instanceof
Closure) {
53 $existing = $this->symbol_decorator;
54 $this->symbol_decorator =
static function (
Symbol $c) use ($symbol_decorator, $existing) :
Symbol {
55 $component = $existing(
$c);
57 return $symbol_decorator($component);
60 $this->symbol_decorator = $symbol_decorator;
71 return $this->symbol_decorator;
78 if (count($r->getParameters()) !== 1) {
81 $first_param_type = $r->getParameters()[0]->getType();
82 if ($first_param_type instanceof
ReflectionType && $first_param_type->getName() !== Symbol::class) {
85 $return_type = $r->getReturnType();
89 return $return_type->getName() === Symbol::class;
Interface isGlobalScreenItem.
addSymbolDecorator(Closure $symbol_decorator)