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 | 4 | public function __construct($action) |
|
50 | } |
||
51 |