1 | <?php |
||
32 | class Reference |
||
33 | { |
||
34 | const TYPE_EXTERNAL = 'External'; |
||
35 | const TYPE_AMADEUS = 'Amadeus'; |
||
36 | |||
37 | /** |
||
38 | * self:: TYPE_* |
||
39 | * |
||
40 | * @var string |
||
41 | */ |
||
42 | public $Type; |
||
43 | |||
44 | /** |
||
45 | * @var string |
||
46 | */ |
||
47 | public $_; |
||
48 | |||
49 | /** |
||
50 | * Reference constructor. |
||
51 | * @param string $type |
||
52 | * @param string $value |
||
53 | */ |
||
54 | public function __construct($type, $value) |
||
59 | } |
||
60 |