Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Pulled in current master into this branch
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Dec 3, 2012
2 parents 26ee41a + 0835021 commit be4158f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Storage/Adapter/MemoryOptions.php
Expand Up @@ -101,15 +101,15 @@ protected function normalizeMemoryLimit($value)
switch (strtoupper($matches[2])) {
case 'G':
$value*= 1024;
// Break intentionally omitted
// no break

case 'M':
$value*= 1024;
// Break intentionally omitted
// no break

case 'K':
$value*= 1024;
// Break intentionally omitted
// no break
}

return $value;
Expand Down

0 comments on commit be4158f

Please sign in to comment.