Skip to content

Commit 550c151

Browse files
committed
Fix CS
1 parent 37ebab3 commit 550c151

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

DataCollector/MemoryDataCollector.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,11 @@ private function convertToBytes(string $memoryLimit)
100100

101101
switch (substr($memoryLimit, -1)) {
102102
case 't': $max *= 1024;
103+
// no break
103104
case 'g': $max *= 1024;
105+
// no break
104106
case 'm': $max *= 1024;
107+
// no break
105108
case 'k': $max *= 1024;
106109
}
107110

0 commit comments

Comments
 (0)