ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
hasSymbol.php
Go to the documentation of this file.
2 
3 use Closure;
5 
11 interface hasSymbol extends isItem
12 {
13 
18  public function withSymbol(Symbol $symbol) : hasSymbol;
19 
23  public function getSymbol() : Symbol;
24 
28  public function hasSymbol() : bool;
29 
34  public function addSymbolDecorator(Closure $symbol_decorator) : hasSymbol;
35 
39  public function getSymbolDecorator() : ?Closure;
40 }
This describes a symbol.
Definition: Symbol.php:11
Interface hasSymbol Methods for Entries with Symbols.
Definition: hasSymbol.php:11