ILIAS  trunk Revision v11.0_alpha-1769-g99a433fe2dc
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
StartUpSequenceStep.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 abstract class StartUpSequenceStep
29 {
33  abstract public function shouldStoreRequestTarget(): bool;
34 
38  abstract public function shouldInterceptRequest(): bool;
39 
43  abstract public function isInFulfillment(): bool;
44 
48  abstract public function execute(): void;
49 }