From 419c8bd7082cf2325b1620ad187c35d63683f05c Mon Sep 17 00:00:00 2001 From: Jakob Givoni Date: Wed, 12 Feb 2025 13:02:27 +0100 Subject: [PATCH] typo --- src/CacheAdapter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CacheAdapter.php b/src/CacheAdapter.php index 38dabef..bef5437 100644 --- a/src/CacheAdapter.php +++ b/src/CacheAdapter.php @@ -326,7 +326,7 @@ public function checksum(string $path, Config $config): string $algo = $config->get('checksum_algo'); if (isset($algo) && !is_string($algo)) { - throw new ErrorException('"checksum_algo" $config must be a string.'); + throw new ErrorException('"checksum_algo" in $config must be a string.'); } $metadataKey = isset($algo) ? 'checksum_' . $algo : 'checksum';