ILIAS  release_7 Revision v7.30-3-g800a261c036
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
11abstract 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}
An exception for terminatinating execution or to throw for unit testing.