| 1 | <?php |
||
| 33 | class DateTimeInformation |
||
| 34 | { |
||
| 35 | const OPT_DATE_TICKETED = "710"; |
||
| 36 | const OPT_DATE_OF_REFUND = "DR"; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * self::OPT_* |
||
| 40 | * |
||
| 41 | * @var string |
||
| 42 | */ |
||
| 43 | public $businessSemantic; |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @var DateTime |
||
| 47 | */ |
||
| 48 | public $dateTime; |
||
| 49 | |||
| 50 | /** |
||
| 51 | * DateTimeInformation constructor. |
||
| 52 | * |
||
| 53 | * @param string $option self::OPT_* |
||
| 54 | * @param \DateTime $date |
||
| 55 | */ |
||
| 56 | 4 | public function __construct($option, $date) |
|
| 61 | } |
||
| 62 |