芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/rentandbuyrealty.com/pay/vendor/jms/serializer/src/VisitorInterface.php
* @author Asmir Mustafic
*/ interface VisitorInterface { /** * Allows visitors to convert the input data to a different representation * before the actual serialization/deserialization process starts. * * @param mixed $data * * @return mixed */ public function prepare($data); /** * Called before serialization/deserialization starts. */ public function setNavigator(GraphNavigatorInterface $navigator): void; /** * Get the result of the serialization/deserialization process. * * @param mixed $data * * @return mixed */ public function getResult($data); }