1 | <?php |
||
16 | class PlainTextDeserializationVisitor extends AbstractVisitor |
||
17 | { |
||
18 | public function visitNull($data, array $type, Context $context) |
||
22 | |||
23 | public function visitString($data, array $type, Context $context) |
||
27 | |||
28 | public function visitBoolean($data, array $type, Context $context) |
||
32 | |||
33 | public function visitDouble($data, array $type, Context $context) |
||
37 | |||
38 | public function visitInteger($data, array $type, Context $context) |
||
42 | |||
43 | public function visitArray($data, array $type, Context $context) |
||
47 | |||
48 | public function startVisitingObject(ClassMetadata $metadata, $data, array $type, Context $context) |
||
52 | |||
53 | public function visitProperty(PropertyMetadata $metadata, $data, Context $context) |
||
57 | |||
58 | public function endVisitingObject(ClassMetadata $metadata, $data, array $type, Context $context) |
||
62 | |||
63 | public function setNavigator(GraphNavigator $navigator) |
||
67 | |||
68 | public function getNavigator() |
||
72 | |||
73 | public function getResult() |
||
77 | } |
||
78 |