Passed
Push — master ( 1cb76e...588dd9 )
by Fran
03:07
created
src/base/types/helpers/Inspector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.