Skip to content

Commit ef65b20

Browse files
committed
- Fix PHP 7.3 warning about continue in switch.
1 parent 87245aa commit ef65b20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/SharedStrings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ private function prepareSharedStrings()
381381
// </si> - Write previously read string value to cache.
382382
case 'si':
383383
if (!$this->shared_strings_reader->isClosingTag()) {
384-
continue;
384+
break;
385385
}
386386
if ($write_to_cache) {
387387
$cache_current_memory_byte = memory_get_usage(false) - $start_memory_byte;

0 commit comments

Comments
 (0)