1 | <?php |
||
31 | class StatusInformation |
||
32 | { |
||
33 | const INDICATOR_SALES_REPORT_ONLY = "SRP"; |
||
34 | |||
35 | /** |
||
36 | * SELF::INDICATOR_* |
||
37 | * |
||
38 | * @var string |
||
39 | */ |
||
40 | public $indicator; |
||
41 | |||
42 | /** |
||
43 | * StatusInformation constructor. |
||
44 | * |
||
45 | * @param string $indicator SELF::INDICATOR_* |
||
46 | */ |
||
47 | 1 | public function __construct($indicator) |
|
51 | } |
||
52 |