| Total Complexity | 1 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | class FareBasisOptions |
||
| 32 | { |
||
| 33 | /** |
||
| 34 | * HD Half round trip fares with reversing the direction |
||
| 35 | * HR Half round trip fares without reversing the direction |
||
| 36 | * |
||
| 37 | * @var string |
||
| 38 | */ |
||
| 39 | public $movementType; |
||
| 40 | /** |
||
| 41 | * @var FareBasisDetails |
||
| 42 | */ |
||
| 43 | public $fareBasisDetails; |
||
| 44 | |||
| 45 | /** |
||
| 46 | * FareBasisOptions constructor. |
||
| 47 | * |
||
| 48 | * @param string|null $primaryCode |
||
| 49 | * @param string|null $code |
||
| 50 | */ |
||
| 51 | 10 | public function __construct($primaryCode = null, $code = null) |
|
| 56 |