| 1 | <?php |
||
| 31 | class CompanyDetails |
||
| 32 | { |
||
| 33 | const QUAL_AWARD_PUBLISHING = "M"; |
||
| 34 | const QUAL_CONTROLLING_CARRIER_OVERRIDE = "CC"; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @var string |
||
| 38 | */ |
||
| 39 | public $qualifier; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @var string |
||
| 43 | */ |
||
| 44 | public $company; |
||
| 45 | |||
| 46 | /** |
||
| 47 | * CompanyDetails constructor. |
||
| 48 | * |
||
| 49 | * @param string $company |
||
| 50 | * @param string $qualifier self::QUAL_* |
||
| 51 | */ |
||
| 52 | public function __construct($company, $qualifier = self::QUAL_AWARD_PUBLISHING) |
||
| 57 | } |
||
| 58 |