Skip to content

Commit e23df1a

Browse files
committed
whitespace
1 parent 42cb4da commit e23df1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

opcache.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function getUptime(): string
6868
$lastRestart = $this->status['opcache_statistics']['last_restart_time'] ?? 0;
6969
$since = $lastRestart > 0 ? $lastRestart : $start;
7070
$diff = (new \DateTimeImmutable("@$since"))->diff(new \DateTimeImmutable());
71-
return match(true) {
71+
return match (true) {
7272
$diff->y > 0 => $diff->format('%yy %mmo'),
7373
$diff->m > 0 => $diff->format('%mmo %dd'),
7474
$diff->d > 0 => $diff->format('%dd %hh'),
@@ -762,7 +762,7 @@ private function sizeForHumansPlain(int $bytes): string
762762

763763
private function utilizationStatus(float $pct): string
764764
{
765-
return match(true) {
765+
return match (true) {
766766
$pct > 75 => 'red',
767767
$pct >= 50 => 'yellow',
768768
default => 'green',

0 commit comments

Comments
 (0)