@@ -50,7 +50,7 @@ discard block |
||
| 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 |
||
| 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' => [], |