mirror of
https://github.com/itflow-org/itflow
synced 2026-09-15 11:15:13 +00:00
Update imapengine dependancies too
This commit is contained in:
21
libs/vendor/guzzlehttp/psr7/src/NonSerializableStreamTrait.php
vendored
Normal file
21
libs/vendor/guzzlehttp/psr7/src/NonSerializableStreamTrait.php
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace GuzzleHttp\Psr7;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
trait NonSerializableStreamTrait
|
||||
{
|
||||
public function __serialize(): array
|
||||
{
|
||||
throw new \LogicException(static::class.' should never be serialized');
|
||||
}
|
||||
|
||||
public function __unserialize(array $data): void
|
||||
{
|
||||
throw new \LogicException(static::class.' should never be unserialized');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user