From 4e307c0cc8120d508efcfaf777554ed9bd75755f Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Thu, 7 Aug 2025 17:26:43 +0200 Subject: [PATCH] #7684 --- src/CommandLine/Poppler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CommandLine/Poppler.php b/src/CommandLine/Poppler.php index 9e504d2..bce20c7 100644 --- a/src/CommandLine/Poppler.php +++ b/src/CommandLine/Poppler.php @@ -111,7 +111,7 @@ class Poppler return $res; } - public static function extractAreaFilehash($file, $page, $rect, $options) + public static function extractAreaFilehash($file, $page, $rect, $options): string { $f = Files::hashFileAttributes($file) . '||' . '++' . json_encode($rect) . '**' . json_encode($options) . '||' . $page . '!!'; return hash('sha256', $f); -- 2.39.5