ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Placeholder.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24
25interface 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)