Skip to content

Commit 7a64c45

Browse files
committed
Merge branch '6.1' into 6.2
* 6.1: Fix CS
2 parents bd063b1 + ce50c47 commit 7a64c45

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

DataCollector/MemoryDataCollector.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ private function convertToBytes(string $memoryLimit): int|float
9494

9595
switch (substr($memoryLimit, -1)) {
9696
case 't': $max *= 1024;
97-
// no break
97+
// no break
9898
case 'g': $max *= 1024;
99-
// no break
99+
// no break
100100
case 'm': $max *= 1024;
101-
// no break
101+
// no break
102102
case 'k': $max *= 1024;
103103
}
104104

0 commit comments

Comments
 (0)