- Fixed a typo

This commit is contained in:
Dave M. 2023-10-30 15:27:49 +00:00
parent 9bf167f782
commit 302b1cc8f6
2 changed files with 3 additions and 1 deletions

View File

@ -89,6 +89,8 @@ class Cookie {
list($hash, $value) = explode('|', $_COOKIE[$key], 2);
if (! $this->isSecure($hash, $value)) {
$this->delete($key);
throw new Exception\CookieInvalidSecureHashException("Invalid cookie hash value given.");
}

View File

@ -1,5 +1,5 @@
<?php
namespace Stoarge\Exception;
namespace Storage\Exception;
class CookieInvalidSecureHashException extends \Exception {}