/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/ |
H A D | HandlerRegistryTest.php | 7 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 D | LazyHandlerRegistryTest.php | 7 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 D | IteratorHandlerTest.php | 8 use JMS\Serializer\GraphNavigatorInterface; alias 47 GraphNavigatorInterface::DIRECTION_SERIALIZATION, 62 GraphNavigatorInterface::DIRECTION_DESERIALIZATION,
|
/plugin/findologicxmlexport/vendor/jms/serializer/src/ |
H A D | Serializer.php | 95 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 D | AbstractVisitor.php | 13 * @var GraphNavigatorInterface 17 public function setNavigator(GraphNavigatorInterface $navigator): void
|
H A D | Context.php | 37 * @var GraphNavigatorInterface 61 …public function initialize(string $format, VisitorInterface $visitor, GraphNavigatorInterface $nav… 98 public function getNavigator(): GraphNavigatorInterface
|
H A D | SerializationContext.php | 33 …public function initialize(string $format, VisitorInterface $visitor, GraphNavigatorInterface $nav… 116 return GraphNavigatorInterface::DIRECTION_SERIALIZATION;
|
H A D | VisitorInterface.php | 33 public function setNavigator(GraphNavigatorInterface $navigator): void;
|
H A D | GraphNavigatorInterface.php | 9 interface GraphNavigatorInterface interface
|
H A D | DeserializationContext.php | 23 return GraphNavigatorInterface::DIRECTION_DESERIALIZATION;
|
H A D | GraphNavigator.php | 20 abstract class GraphNavigator implements GraphNavigatorInterface
|
/plugin/findologicxmlexport/vendor/jms/serializer/src/Handler/ |
H A D | IteratorHandler.php | 8 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 D | HandlerRegistry.php | 9 use JMS\Serializer\GraphNavigatorInterface; alias 25 case GraphNavigatorInterface::DIRECTION_DESERIALIZATION: 28 case GraphNavigatorInterface::DIRECTION_SERIALIZATION: 48 …$directions = [GraphNavigatorInterface::DIRECTION_DESERIALIZATION, GraphNavigatorInterface::DIRECT…
|
H A D | ArrayCollectionHandler.php | 10 use JMS\Serializer\GraphNavigatorInterface; alias 45 'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION, 52 'direction' => GraphNavigatorInterface::DIRECTION_DESERIALIZATION,
|
H A D | StdClassHandler.php | 7 use JMS\Serializer\GraphNavigatorInterface; alias 27 'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION,
|
H A D | FormErrorHandler.php | 7 use JMS\Serializer\GraphNavigatorInterface; alias 36 'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION, 41 'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION,
|
H A D | ConstraintViolationHandler.php | 7 use JMS\Serializer\GraphNavigatorInterface; alias 28 'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION,
|
H A D | DateHandler.php | 8 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 D | GraphNavigatorFactoryInterface.php | 7 use JMS\Serializer\GraphNavigatorInterface; alias 11 public function getGraphNavigator(): GraphNavigatorInterface;
|
H A D | SerializationGraphNavigatorFactory.php | 13 use JMS\Serializer\GraphNavigatorInterface; alias 54 public function getGraphNavigator(): GraphNavigatorInterface
|
H A D | DeserializationGraphNavigatorFactory.php | 12 use JMS\Serializer\GraphNavigatorInterface; alias 59 public function getGraphNavigator(): GraphNavigatorInterface
|
/plugin/findologicxmlexport/vendor/jms/serializer/src/GraphNavigator/ |
H A D | DeserializationGraphNavigator.php | 21 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 D | SerializationGraphNavigator.php | 21 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 D | JsonSerializationTest.php | 11 use JMS\Serializer\GraphNavigatorInterface; alias 179 GraphNavigatorInterface::DIRECTION_SERIALIZATION, 198 GraphNavigatorInterface::DIRECTION_SERIALIZATION, 261 $navigator = $this->getMockBuilder(GraphNavigatorInterface::class)->getMock();
|
H A D | GraphNavigatorTest.php | 15 use JMS\Serializer\GraphNavigatorInterface; alias 176 'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION,
|