| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 17 | 18 | public function __construct( |
|
| 18 | Bytes $total, |
||
| 19 | Bytes $wired, |
||
| 20 | Bytes $active, |
||
| 21 | Bytes $free, |
||
| 22 | Bytes $swap, |
||
| 23 | Bytes $used |
||
| 24 | ) { |
||
| 25 | 18 | $this->total = $total; |
|
| 26 | 18 | $this->wired = $wired; |
|
| 27 | 18 | $this->active = $active; |
|
| 28 | 18 | $this->free = $free; |
|
| 29 | 18 | $this->swap = $swap; |
|
| 30 | 18 | $this->used = $used; |
|
| 31 | 18 | } |
|
| 63 |