| Total Complexity | 1 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | class PricingRecordId |
||
| 32 | { |
||
| 33 | /** |
||
| 34 | * PQR Product Quotation Record Reference |
||
| 35 | * |
||
| 36 | * @var string |
||
| 37 | */ |
||
| 38 | const REFTYPE_PRODQUOTREC = "PQR"; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Code giving specific meaning to a reference segment or a reference number. |
||
| 42 | * |
||
| 43 | * @var string |
||
| 44 | */ |
||
| 45 | public $referenceType = self::REFTYPE_PRODQUOTREC; |
||
| 46 | |||
| 47 | /** |
||
| 48 | * Identification number. |
||
| 49 | * |
||
| 50 | * @var string |
||
| 51 | */ |
||
| 52 | public $uniqueReference; |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @param string $referenceNr |
||
| 56 | */ |
||
| 57 | 5 | public function __construct($referenceNr) |
|
| 62 |