| Total Complexity | 1 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 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 | 5 | public function __construct($indicator, $freeText) |
|
| 57 |