| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function __construct($apiResponse) |
||
| 27 | { |
||
| 28 | $this->_initScalarProperties($apiResponse, [ |
||
| 29 | ['total' => 'totalMemory'], |
||
| 30 | ['used' => 'usedMemory'], |
||
| 31 | ['free' => 'freeMemory'], |
||
| 32 | ['shared' => 'sharedMemory'], |
||
| 33 | ['buffer' => 'bufferMemory'], |
||
| 34 | ['cached' => 'cachedMemory'], |
||
| 35 | ]); |
||
| 36 | } |
||
| 37 | } |
||
| 38 |