Total Complexity | 1 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
7 | final class State |
||
8 | { |
||
9 | public const NONE = 0; |
||
10 | |||
11 | public const PRE = 1; |
||
12 | |||
13 | public const EXEC = 2; |
||
14 | |||
15 | public const POST = 3; |
||
16 | |||
17 | public const STATES = [ |
||
18 | self::NONE, |
||
19 | self::PRE, |
||
20 | self::EXEC, |
||
21 | self::POST, |
||
22 | ]; |
||
23 | |||
24 | /** |
||
25 | * This class cannot be instantiated. |
||
26 | */ |
||
27 | private function __construct() |
||
31 |