| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 54 | public function __construct($description, $width, $length, $depth, $weight) |
||
| 55 | { |
||
| 56 | $this->description = $description; |
||
| 57 | $this->width = $width; |
||
| 58 | $this->length = $length; |
||
| 59 | $this->depth = $depth; |
||
| 60 | $this->weight = $weight; |
||
| 61 | |||
| 62 | $this->volume = $this->width * $this->length * $this->depth; |
||
| 63 | } |
||
| 64 | |||
| 115 |