From e31d0fa3393dad9951835f9dd9814182363dbded Mon Sep 17 00:00:00 2001 From: Vitaliy Chesnokov Date: Mon, 22 Jul 2019 13:03:57 +0300 Subject: [PATCH] Fix switch...continue for php 7.3 --- Classes/PHPExcel/Shared/OLE.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/PHPExcel/Shared/OLE.php b/Classes/PHPExcel/Shared/OLE.php index 42a3c52..5f985f2 100644 --- a/Classes/PHPExcel/Shared/OLE.php +++ b/Classes/PHPExcel/Shared/OLE.php @@ -285,7 +285,7 @@ class PHPExcel_Shared_OLE $pps = new PHPExcel_Shared_OLE_PPS_File($name); break; default: - continue; + continue 2; } fseek($fh, 1, SEEK_CUR); $pps->Type = $type;