ILIAS  trunk Revision v11.0_alpha-1731-gff9cd7e2bd3
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
hasSymbol.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use Closure;
26 
30 interface hasSymbol extends isItem
31 {
32  public function withSymbol(Symbol $symbol): hasSymbol;
33 
34  public function getSymbol(): Symbol;
35 
36  public function hasSymbol(): bool;
37 
39 
40  public function getSymbolDecorator(): ?Closure;
41 }
This describes a symbol.
Definition: Symbol.php:29