Bump imapengine from 1.25.4 to 1.25.6 and dependencies

This commit is contained in:
johnnyq
2026-08-26 13:02:29 -04:00
parent 71cfdf5e39
commit 3d9a41bec4
54 changed files with 978 additions and 543 deletions

View File

@@ -57,6 +57,8 @@ class Signed implements Serializable
* Get the serializable representation of the closure.
*
* @return array
*
* @throws \Laravel\SerializableClosure\Exceptions\MissingSecretKeyException
*/
public function __serialize()
{
@@ -76,10 +78,15 @@ class Signed implements Serializable
* @return void
*
* @throws \Laravel\SerializableClosure\Exceptions\InvalidSignatureException
* @throws \Laravel\SerializableClosure\Exceptions\MissingSecretKeyException
*/
public function __unserialize($signature)
{
if (static::$signer && ! static::$signer->verify($signature)) {
if (! static::$signer) {
throw new MissingSecretKeyException();
}
if (! static::$signer->verify($signature)) {
throw new InvalidSignatureException();
}