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