| 1 | <?php |
||
| 20 | trait FloatQuantityTrait { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Quantity. |
||
| 24 | * |
||
| 25 | * @var float |
||
| 26 | */ |
||
| 27 | protected $quantity; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Get the quantity. |
||
| 31 | * |
||
| 32 | * @return float Returns the quantity. |
||
| 33 | */ |
||
| 34 | public function getQuantity() { |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Set the quantity. |
||
| 40 | * |
||
| 41 | * @param float $quantity The quantity. |
||
| 42 | */ |
||
| 43 | public function setQuantity($quantity) { |
||
| 47 | } |
||
| 48 |