| 1 |
<?php |
| 2 |
|
| 3 |
declare (strict_types=1); |
| 4 |
namespace WCPOS\Vendor\GuzzleHttp\Psr7; |
| 5 |
|
| 6 |
/** |
| 7 |
* @internal |
| 8 |
*/ |
| 9 |
trait NonSerializableStreamTrait |
| 10 |
{ |
| 11 |
public function __serialize() : array |
| 12 |
{ |
| 13 |
throw new \LogicException(static::class . ' should never be serialized'); |
| 14 |
} |
| 15 |
public function __unserialize(array $data) : void |
| 16 |
{ |
| 17 |
throw new \LogicException(static::class . ' should never be unserialized'); |
| 18 |
} |
| 19 |
} |
| 20 |
|