Skip to content

Commit 1ef9ac7

Browse files
committed
Fix PHPStan error in PhpfastcacheCorruptedDataException
1 parent 4e92fe0 commit 1ef9ac7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Phpfastcache/Exceptions/PhpfastcacheCorruptedDataException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class PhpfastcacheCorruptedDataException extends PhpfastcacheDriverException
2222
* @param string $message
2323
* @param mixed|null $corruptedData
2424
*/
25-
public function __construct(protected string $message = '', protected mixed $corruptedData = null)
25+
public function __construct(protected $message = '', protected mixed $corruptedData = null)
2626
{
2727
parent::__construct($message);
2828
}

0 commit comments

Comments
 (0)