Skip to content

Commit

Permalink
- Fix PHP 7.3 warning about continue in switch.
Browse files Browse the repository at this point in the history
  • Loading branch information
adirfische committed Jul 22, 2019
1 parent 87245aa commit ef65b20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/SharedStrings.php
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ private function prepareSharedStrings()
// </si> - Write previously read string value to cache.
case 'si':
if (!$this->shared_strings_reader->isClosingTag()) {
continue;
break;
}
if ($write_to_cache) {
$cache_current_memory_byte = memory_get_usage(false) - $start_memory_byte;
Expand Down

0 comments on commit ef65b20

Please sign in to comment.