| 1 | <?php |
||
| 8 | class LineItem extends BaseLineItem |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | private $productIdentifier; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | private $description; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var float |
||
| 22 | */ |
||
| 23 | private $salesTax; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | 2 | public function getDescription() |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @param string $description |
||
| 35 | */ |
||
| 36 | 4 | public function setDescription($description) |
|
| 40 | |||
| 41 | /** |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | 2 | public function getProductIdentifier() |
|
| 48 | |||
| 49 | /** |
||
| 50 | * @param string $productIdentifier |
||
| 51 | */ |
||
| 52 | 4 | public function setProductIdentifier($productIdentifier) |
|
| 56 | |||
| 57 | /** |
||
| 58 | * @return float |
||
| 59 | */ |
||
| 60 | 2 | public function getSalesTax() |
|
| 64 | |||
| 65 | /** |
||
| 66 | * @param float $salesTax |
||
| 67 | */ |
||
| 68 | 4 | public function setSalesTax($salesTax) |
|
| 74 | } |
||
| 75 |