| Conditions | 4 |
| Paths | 4 |
| Total Lines | 15 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 20 |
| Changes | 0 | ||
| 1 | <?php |
||
| 55 | private function convertSizeToString(int $bytes): string |
||
| 56 | { |
||
| 57 | if ($bytes >= 1073741824) { |
||
| 58 | return number_format($bytes / 1073741824, 1) . 'GB'; |
||
| 59 | } |
||
| 60 | |||
| 61 | if ($bytes >= 1048576) { |
||
| 62 | return number_format($bytes / 1048576, 1) . 'MB'; |
||
| 63 | } |
||
| 64 | |||
| 65 | if ($bytes >= 1024) { |
||
| 66 | return number_format($bytes / 1024, 1) . 'KB'; |
||
| 67 | } |
||
| 68 | |||
| 69 | return $bytes . 'B'; |
||
| 70 | } |
||
| 72 |