| 1 | <?php |
||
| 31 | class FreeFormatTour |
||
| 32 | { |
||
| 33 | const INDICATOR_FREE_FORMAT = 'FF'; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @var string |
||
| 37 | */ |
||
| 38 | public $indicator; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @var string |
||
| 42 | */ |
||
| 43 | public $freetext; |
||
| 44 | |||
| 45 | /** |
||
| 46 | * FreeFormatTour constructor. |
||
| 47 | * |
||
| 48 | * @param string $indicator |
||
| 49 | * @param string $freeText |
||
| 50 | */ |
||
| 51 | 1 | public function __construct($indicator, $freeText) |
|
| 56 | } |