ILIAS  release_8 Revision v8.24
StartUpSequenceStep.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
5
7
13abstract class StartUpSequenceStep
14{
18 abstract public function shouldStoreRequestTarget(): bool;
19
23 abstract public function shouldInterceptRequest(): bool;
24
28 abstract public function isInFulfillment(): bool;
29
33 abstract public function execute(): void;
34}