芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/rentandbuyrealty.com/pay/vendor/jms/serializer/src/SerializerInterface.php
*/ interface SerializerInterface { /** * Serializes the given data to the specified output format. * * @param mixed $data */ public function serialize($data, string $format, ?SerializationContext $context = null, ?string $type = null): string; /** * Deserializes the given data to the specified type. * * @return mixed * * @psalm-template T * @psalm-param class-string
$type * @psalm-return T */ public function deserialize(string $data, string $type, string $format, ?DeserializationContext $context = null); }