ILIAS  trunk Revision v11.0_alpha-1761-g6dbbfa7b760
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Placeholder.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Mail\Placeholder;
22 
24 
25 interface Placeholder
26 {
27  public function getId(): string;
28 
29  public function getLabel(): string;
30 
35  public function handle(Signature $signature): ?array;
36 
37  public function setNext(self $next): self;
38 
39  public function getNext(): ?self;
40 }
handle(Signature $signature)