Passed
Push — master ( 1c5d75...6498f8 )
by Darko
09:30
created
app/Services/SystemMetricsService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
             $hourKey = $metric->recorded_at->format('Y-m-d H:00');
51 51
             $hourLabel = $metric->recorded_at->format('H:i');
52 52
 
53
-            if (! isset($hourlyData[$hourKey])) {
53
+            if (!isset($hourlyData[$hourKey])) {
54 54
                 $hourlyData[$hourKey] = [
55 55
                     'time' => $hourLabel,
56 56
                     'values' => [],
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
             $dayKey = $metric->recorded_at->format('Y-m-d');
91 91
             $dayLabel = $metric->recorded_at->format('M d');
92 92
 
93
-            if (! isset($dailyData[$dayKey])) {
93
+            if (!isset($dailyData[$dayKey])) {
94 94
                 $dailyData[$dayKey] = [
95 95
                     'time' => $dayLabel,
96 96
                     'values' => [],
Please login to merge, or discard this patch.