Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
31 | class StatusInformation |
||
32 | { |
||
33 | const ACTION_MOST_RESTRICTIVE = 'MRE'; |
||
34 | const ACTION_NEUTRAL_SEAT_MAP = 'NSM'; |
||
35 | |||
36 | /** |
||
37 | * @var string |
||
38 | */ |
||
39 | public $action; |
||
40 | |||
41 | /** |
||
42 | * StatusInformation constructor. |
||
43 | * |
||
44 | * @param string $action |
||
45 | */ |
||
46 | 5 | public function __construct($action) |
|
51 |