ILIAS  release_7 Revision v7.30-3-g800a261c036
hasSymbol.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25use Closure;
26
31interface hasSymbol extends isItem
32{
37 public function withSymbol(Symbol $symbol) : hasSymbol;
38
42 public function getSymbol() : Symbol;
43
47 public function hasSymbol() : bool;
48
53 public function addSymbolDecorator(Closure $symbol_decorator) : isGlobalScreenItem;
54
58 public function getSymbolDecorator() : ?Closure;
59}
An exception for terminatinating execution or to throw for unit testing.
This describes a symbol.
Definition: Symbol.php:12