From de9ba2530078ac7a10e098c9a706a938dca9b2df Mon Sep 17 00:00:00 2001 From: Ciki Date: Mon, 20 Nov 2023 15:02:04 +0100 Subject: [PATCH] Minifier.php: fix return types --- src/JShrink/Minifier.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/JShrink/Minifier.php b/src/JShrink/Minifier.php index f0a078d..9baed46 100644 --- a/src/JShrink/Minifier.php +++ b/src/JShrink/Minifier.php @@ -679,7 +679,7 @@ protected function endsInKeyword() { * Replace patterns in the given string and store the replacement * * @param string $js The string to lock - * @return bool + * @return string */ protected function lock($js) { @@ -704,7 +704,7 @@ protected function lock($js) * Replace "locks" with the original characters * * @param string $js The string to unlock - * @return bool + * @return string */ protected function unlock($js) {