![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/jms/serializer/src/Visitor/ |
<?php declare(strict_types=1); namespace JMS\Serializer\Visitor; use JMS\Serializer\Metadata\ClassMetadata; use JMS\Serializer\Metadata\PropertyMetadata; use JMS\Serializer\VisitorInterface; /** * Interface for visitors. * * This contains the minimal set of values that must be supported for any * output format. * * @author Johannes M. Schmitt <[email protected]> * @author Asmir Mustafic <[email protected]> */ interface DeserializationVisitorInterface extends VisitorInterface { /** * @param mixed $data * @param array $type * * @return null */ public function visitNull($data, array $type); /** * @param mixed $data * @param array $type */ public function visitString($data, array $type): ?string; /** * @param mixed $data * @param array $type */ public function visitBoolean($data, array $type): ?bool; /** * @param mixed $data * @param array $type */ public function visitDouble($data, array $type): ?float; /** * @param mixed $data * @param array $type */ public function visitInteger($data, array $type): ?int; /** * Returns the class name based on the type of the discriminator map value * * @param mixed $data */ public function visitDiscriminatorMapProperty($data, ClassMetadata $metadata): string; /** * @param mixed $data * @param array $type * * @return array<mixed> */ public function visitArray($data, array $type): array; /** * Called before the properties of the object are being visited. * * @param array $type */ public function startVisitingObject(ClassMetadata $metadata, object $data, array $type): void; /** * @param mixed $data * * @return mixed */ public function visitProperty(PropertyMetadata $metadata, $data); /** * Called after all properties of the object have been visited. * * @param mixed $data * @param array $type */ public function endVisitingObject(ClassMetadata $metadata, $data, array $type): object; /** * @param mixed $data * * @return mixed */ public function getResult($data); }