| 1 | <?php |
||
| 31 | class PriceTicketDetails |
||
| 32 | { |
||
| 33 | const INDICATOR_DOMESTIC_ITINERARY = "D"; |
||
| 34 | const INDICATOR_INTERNATIONAL_ITINERARY = "I"; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * self::INDICATOR_* |
||
| 38 | * |
||
| 39 | * @var string |
||
| 40 | */ |
||
| 41 | public $indicators; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * PriceTicketDetails constructor. |
||
| 45 | * |
||
| 46 | * @param string $indicators |
||
| 47 | */ |
||
| 48 | 1 | public function __construct($indicators) |
|
| 52 | } |
||
| 53 |