Home
last modified time | relevance | path

Searched refs:GraphNavigatorInterface (Results 1 – 25 of 30) sorted by relevance

12

/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DHandlerRegistryTest.php7 use JMS\Serializer\GraphNavigatorInterface; alias
23 …$this->handlerRegistry->registerHandler(GraphNavigatorInterface::DIRECTION_SERIALIZATION, '\stdCla…
26 …$this->handlerRegistry->registerHandler(GraphNavigatorInterface::DIRECTION_DESERIALIZATION, '\stdC…
29 …$this->handlerRegistry->registerHandler(GraphNavigatorInterface::DIRECTION_SERIALIZATION, '\stdCla…
32 …$this->handlerRegistry->registerHandler(GraphNavigatorInterface::DIRECTION_DESERIALIZATION, '\stdC…
34 …me($jsonSerializationHandler, $this->handlerRegistry->getHandler(GraphNavigatorInterface::DIRECTIO…
35 …($jsonDeserializationHandler, $this->handlerRegistry->getHandler(GraphNavigatorInterface::DIRECTIO…
36 …ame($xmlSerializationHandler, $this->handlerRegistry->getHandler(GraphNavigatorInterface::DIRECTIO…
37 …e($xmlDeserializationHandler, $this->handlerRegistry->getHandler(GraphNavigatorInterface::DIRECTIO…
H A DLazyHandlerRegistryTest.php7 use JMS\Serializer\GraphNavigatorInterface; alias
30 …$this->handlerRegistry->registerHandler(GraphNavigatorInterface::DIRECTION_SERIALIZATION, '\stdCla…
34 …$this->handlerRegistry->registerHandler(GraphNavigatorInterface::DIRECTION_DESERIALIZATION, '\stdC…
38 …$this->handlerRegistry->registerHandler(GraphNavigatorInterface::DIRECTION_SERIALIZATION, '\stdCla…
42 …$this->handlerRegistry->registerHandler(GraphNavigatorInterface::DIRECTION_DESERIALIZATION, '\stdC…
44 …ializationHandler, 'handle'], $this->handlerRegistry->getHandler(GraphNavigatorInterface::DIRECTIO…
45 …ializationHandler, 'handle'], $this->handlerRegistry->getHandler(GraphNavigatorInterface::DIRECTIO…
46 …ializationHandler, 'handle'], $this->handlerRegistry->getHandler(GraphNavigatorInterface::DIRECTIO…
47 …ializationHandler, 'handle'], $this->handlerRegistry->getHandler(GraphNavigatorInterface::DIRECTIO…
H A DIteratorHandlerTest.php8 use JMS\Serializer\GraphNavigatorInterface; alias
47 GraphNavigatorInterface::DIRECTION_SERIALIZATION,
62 GraphNavigatorInterface::DIRECTION_DESERIALIZATION,
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DSerializer.php95 return GraphNavigatorInterface::DIRECTION_SERIALIZATION;
98 return GraphNavigatorInterface::DIRECTION_DESERIALIZATION;
115 private function getNavigator(int $direction): GraphNavigatorInterface
131 $factories = GraphNavigatorInterface::DIRECTION_SERIALIZATION === $direction
157 $visitor = $this->getVisitor(GraphNavigatorInterface::DIRECTION_SERIALIZATION, $format);
158 $navigator = $this->getNavigator(GraphNavigatorInterface::DIRECTION_SERIALIZATION);
176 $navigator = $this->getNavigator(GraphNavigatorInterface::DIRECTION_DESERIALIZATION);
192 $visitor = $this->getVisitor(GraphNavigatorInterface::DIRECTION_SERIALIZATION, 'json');
193 $navigator = $this->getNavigator(GraphNavigatorInterface::DIRECTION_SERIALIZATION);
219 $visitor = $this->getVisitor(GraphNavigatorInterface::DIRECTION_DESERIALIZATION, 'json');
[all …]
H A DAbstractVisitor.php13 * @var GraphNavigatorInterface
17 public function setNavigator(GraphNavigatorInterface $navigator): void
H A DContext.php37 * @var GraphNavigatorInterface
61 …public function initialize(string $format, VisitorInterface $visitor, GraphNavigatorInterface $nav…
98 public function getNavigator(): GraphNavigatorInterface
H A DSerializationContext.php33 …public function initialize(string $format, VisitorInterface $visitor, GraphNavigatorInterface $nav…
116 return GraphNavigatorInterface::DIRECTION_SERIALIZATION;
H A DVisitorInterface.php33 public function setNavigator(GraphNavigatorInterface $navigator): void;
H A DGraphNavigatorInterface.php9 interface GraphNavigatorInterface interface
H A DDeserializationContext.php23 return GraphNavigatorInterface::DIRECTION_DESERIALIZATION;
H A DGraphNavigator.php20 abstract class GraphNavigator implements GraphNavigatorInterface
/plugin/findologicxmlexport/vendor/jms/serializer/src/Handler/
H A DIteratorHandler.php8 use JMS\Serializer\GraphNavigatorInterface; alias
26 'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION,
33 'direction' => GraphNavigatorInterface::DIRECTION_DESERIALIZATION,
42 'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION,
49 'direction' => GraphNavigatorInterface::DIRECTION_DESERIALIZATION,
H A DHandlerRegistry.php9 use JMS\Serializer\GraphNavigatorInterface; alias
25 case GraphNavigatorInterface::DIRECTION_DESERIALIZATION:
28 case GraphNavigatorInterface::DIRECTION_SERIALIZATION:
48 …$directions = [GraphNavigatorInterface::DIRECTION_DESERIALIZATION, GraphNavigatorInterface::DIRECT…
H A DArrayCollectionHandler.php10 use JMS\Serializer\GraphNavigatorInterface; alias
45 'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION,
52 'direction' => GraphNavigatorInterface::DIRECTION_DESERIALIZATION,
H A DStdClassHandler.php7 use JMS\Serializer\GraphNavigatorInterface; alias
27 'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION,
H A DFormErrorHandler.php7 use JMS\Serializer\GraphNavigatorInterface; alias
36 'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION,
41 'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION,
H A DConstraintViolationHandler.php7 use JMS\Serializer\GraphNavigatorInterface; alias
28 'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION,
H A DDateHandler.php8 use JMS\Serializer\GraphNavigatorInterface; alias
45 'direction' => GraphNavigatorInterface::DIRECTION_DESERIALIZATION,
54 'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION,
/plugin/findologicxmlexport/vendor/jms/serializer/src/GraphNavigator/Factory/
H A DGraphNavigatorFactoryInterface.php7 use JMS\Serializer\GraphNavigatorInterface; alias
11 public function getGraphNavigator(): GraphNavigatorInterface;
H A DSerializationGraphNavigatorFactory.php13 use JMS\Serializer\GraphNavigatorInterface; alias
54 public function getGraphNavigator(): GraphNavigatorInterface
H A DDeserializationGraphNavigatorFactory.php12 use JMS\Serializer\GraphNavigatorInterface; alias
59 public function getGraphNavigator(): GraphNavigatorInterface
/plugin/findologicxmlexport/vendor/jms/serializer/src/GraphNavigator/
H A DDeserializationGraphNavigator.php21 use JMS\Serializer\GraphNavigatorInterface; alias
36 final class DeserializationGraphNavigator extends GraphNavigator implements GraphNavigatorInterface
155 …if (null !== $handler = $this->handlerRegistry->getHandler(GraphNavigatorInterface::DIRECTION_DESE…
H A DSerializationGraphNavigator.php21 use JMS\Serializer\GraphNavigatorInterface; alias
38 final class SerializationGraphNavigator extends GraphNavigator implements GraphNavigatorInterface
191 …if (null !== $handler = $this->handlerRegistry->getHandler(GraphNavigatorInterface::DIRECTION_SERI…
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DJsonSerializationTest.php11 use JMS\Serializer\GraphNavigatorInterface; alias
179 GraphNavigatorInterface::DIRECTION_SERIALIZATION,
198 GraphNavigatorInterface::DIRECTION_SERIALIZATION,
261 $navigator = $this->getMockBuilder(GraphNavigatorInterface::class)->getMock();
H A DGraphNavigatorTest.php15 use JMS\Serializer\GraphNavigatorInterface; alias
176 'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION,

12