| 1 | <?php |
||
| 31 | class StatusDetails |
||
| 32 | { |
||
| 33 | const IND_DEAD = "DED"; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * self::IND_* |
||
| 37 | * |
||
| 38 | * @var string |
||
| 39 | */ |
||
| 40 | public $indicator; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @var int |
||
| 44 | */ |
||
| 45 | public $action; |
||
| 46 | |||
| 47 | /** |
||
| 48 | * StatusDetails constructor. |
||
| 49 | * |
||
| 50 | * @param string $indicator |
||
| 51 | * @param int $action |
||
| 52 | */ |
||
| 53 | 8 | public function __construct($indicator, $action) |
|
| 58 | } |
||
| 59 |