ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
StartUpSequenceStep.php
Go to the documentation of this file.
1 <?php declare(strict_types=1);
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
5 
11 abstract class StartUpSequenceStep
12 {
16  abstract public function shouldStoreRequestTarget() : bool;
17 
21  abstract public function shouldInterceptRequest() : bool;
22 
26  abstract public function isInFulfillment() : bool;
27 
31  abstract public function execute() : void;
32 }