@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | { |
| 53 | 53 | return [ |
| 54 | 54 | 'ts' => round($stats['ts'] - $timestamp, 4), |
| 55 | - 'mem' => round(($stats['mem'] - $mem) / 1024 / 1024, 4), |
|
| 55 | + 'mem' => round(($stats['mem'] - $mem)/1024/1024, 4), |
|
| 56 | 56 | 'files' => $stats['files'] - $files, |
| 57 | 57 | 'name' => $stats['name'], |
| 58 | 58 | ]; |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | * @param string|null $scope |
| 81 | 81 | * @return array |
| 82 | 82 | */ |
| 83 | - public static function getStats(string|null $scope = self::SCOPE_PROFILE): array |
|
| 83 | + public static function getStats(string | null $scope = self::SCOPE_PROFILE): array |
|
| 84 | 84 | { |
| 85 | 85 | return self::processStats($scope); |
| 86 | 86 | } |