| 1 | <?php |
||
| 12 | class Package extends \SimpleUPS\Model |
||
| 13 | { |
||
| 14 | private |
||
| 15 | /* @var Weight $weight */ |
||
| 16 | $weight; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Set the weight of this package |
||
| 20 | * |
||
| 21 | * @param Float|Weight $weight |
||
| 22 | * |
||
| 23 | * @return Package |
||
| 24 | */ |
||
| 25 | public function setWeight($weight) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Get weight of package |
||
| 43 | * @return Weight |
||
| 44 | */ |
||
| 45 | public function getWeight() |
||
| 49 | } |