Skip to content

Commit ce50c47

Browse files
committed
Merge branch '6.0' into 6.1
* 6.0: Fix CS
2 parents b01e8c3 + e7f20cd commit ce50c47

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)