From 76f8c13c5e063a1d60890cc3d1cc239eb54578b3 Mon Sep 17 00:00:00 2001 From: Theodore Brown Date: Mon, 11 Nov 2024 16:37:12 -0600 Subject: [PATCH] Fix inconsistent switch case syntax This must have been a typo, since it's the only case in the project using the non-standard syntax. --- library/Zend/Pdf/Resource/Image/Png.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Zend/Pdf/Resource/Image/Png.php b/library/Zend/Pdf/Resource/Image/Png.php index 4165e3b..f4e7545 100644 --- a/library/Zend/Pdf/Resource/Image/Png.php +++ b/library/Zend/Pdf/Resource/Image/Png.php @@ -190,7 +190,7 @@ public function __construct($imageFileName) fseek($imageFile, 4, SEEK_CUR); //4 Byte Ending Sequence break; - case 'IEND'; + case 'IEND': break 2; //End the loop too default: