| 1 | <?php |
||
| 5 | class Weight extends Model |
||
| 6 | { |
||
| 7 | public $unit; |
||
| 8 | public $value; |
||
| 9 | |||
| 10 | public function __construct($value = null, $unit = null) |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param $value |
||
| 20 | * |
||
| 21 | * @return $this |
||
| 22 | */ |
||
| 23 | public function unit($value) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @param init $value |
||
| 37 | * |
||
| 38 | * @return $this |
||
| 39 | */ |
||
| 40 | public function value($value) |
||
| 46 | } |
||
| 47 |