Home
last modified time | relevance | path

Searched refs:handlerRegistry (Results 1 – 15 of 15) sorted by relevance

/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
DHandlerRegistryTest.php13 protected $handlerRegistry; variable in JMS\\Serializer\\Tests\\Handler\\HandlerRegistryTest
17 $this->handlerRegistry = $this->createHandlerRegistry();
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 …self::assertSame($jsonSerializationHandler, $this->handlerRegistry->getHandler(GraphNavigatorInter…
35 …self::assertSame($jsonDeserializationHandler, $this->handlerRegistry->getHandler(GraphNavigatorInt…
36 …self::assertSame($xmlSerializationHandler, $this->handlerRegistry->getHandler(GraphNavigatorInterf…
37 …self::assertSame($xmlDeserializationHandler, $this->handlerRegistry->getHandler(GraphNavigatorInte…
DLazyHandlerRegistryTest.php30 …$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 …self::assertSame([$jsonSerializationHandler, 'handle'], $this->handlerRegistry->getHandler(GraphNa…
45 …self::assertSame([$jsonDeserializationHandler, 'handle'], $this->handlerRegistry->getHandler(Graph…
46 …self::assertSame([$xmlSerializationHandler, 'handle'], $this->handlerRegistry->getHandler(GraphNav…
47 …self::assertSame([$xmlDeserializationHandler, 'handle'], $this->handlerRegistry->getHandler(GraphN…
DIteratorHandlerTest.php23 private $handlerRegistry; variable in JMS\\Serializer\\Tests\\Handler\\IteratorHandlerTest
46 $serializationHandler = $this->handlerRegistry->getHandler(
61 $deserializationHandler = $this->handlerRegistry->getHandler(
79 $this->handlerRegistry = new HandlerRegistry();
80 $this->handlerRegistry->registerSubscribingHandler(new IteratorHandler());
/plugin/findologicxmlexport/vendor/goetas-webservices/xsd2php-runtime/tests/
DXmlSchemaDateHandlerDeserializationTest.php43 $handlerRegistry= new HandlerRegistry();
47 ? $this->initJmsv2($naming, $handlerRegistry, $cons, $dispatcher)
48 : $this->initJmsv1($naming, $handlerRegistry, $cons, $dispatcher)
53 private function initJmsv2($naming, $handlerRegistry, $cons, $dispatcher) argument
58 …return new GraphNavigator\DeserializationGraphNavigator($metadataFactory, $handlerRegistry, $cons,…
61 private function initJmsv1($naming, $handlerRegistry, $cons, $dispatcher) argument
65 return new GraphNavigator($metadataFactory, $handlerRegistry, $cons, $dispatcher);
DXmlSchemaDateHandlerSerializationTest.php42 $handlerRegistry= new HandlerRegistry();
45 ? $this->initJmsv2($naming, $handlerRegistry, $cons, $dispatcher)
46 : $this->initJmsv1($naming, $handlerRegistry, $cons, $dispatcher)
51 private function initJmsv2($naming, $handlerRegistry, $cons, $dispatcher) argument
56 …return new GraphNavigator\SerializationGraphNavigator($metadataFactory, $handlerRegistry, $accesso…
59 private function initJmsv1($naming, $handlerRegistry, $cons, $dispatcher) argument
63 return new GraphNavigator($metadataFactory, $handlerRegistry, $cons, $dispatcher);
/plugin/findologicxmlexport/vendor/jms/serializer/src/GraphNavigator/Factory/
DSerializationGraphNavigatorFactory.php26 private $handlerRegistry; variable in JMS\\Serializer\\GraphNavigator\\Factory\\SerializationGraphNavigatorFactory
42 HandlerRegistryInterface $handlerRegistry, argument
48 $this->handlerRegistry = $handlerRegistry;
56 …return new SerializationGraphNavigator($this->metadataFactory, $this->handlerRegistry, $this->acce…
DDeserializationGraphNavigatorFactory.php25 private $handlerRegistry; variable in JMS\\Serializer\\GraphNavigator\\Factory\\DeserializationGraphNavigatorFactory
45 HandlerRegistryInterface $handlerRegistry, argument
52 $this->handlerRegistry = $handlerRegistry;
61 …return new DeserializationGraphNavigator($this->metadataFactory, $this->handlerRegistry, $this->ob…
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
DGraphNavigatorTest.php29 private $handlerRegistry; variable in JMS\\Serializer\\Tests\\Serializer\\GraphNavigatorTest
78 …$navigator = new SerializationGraphNavigator($this->metadataFactory, $this->handlerRegistry, $this…
108 …r = new DeserializationGraphNavigator($this->metadataFactory, $this->handlerRegistry, $this->objec…
127 $this->handlerRegistry->registerSubscribingHandler(new TestSubscribingHandler());
129 …$navigator = new SerializationGraphNavigator($this->metadataFactory, $this->handlerRegistry, $this…
151 $this->handlerRegistry = new HandlerRegistry();
156 …tor = new SerializationGraphNavigator($this->metadataFactory, $this->handlerRegistry, $this->acces…
159 …r = new DeserializationGraphNavigator($this->metadataFactory, $this->handlerRegistry, $this->objec…
DSerializationContextFactoryTest.php25 protected $handlerRegistry; variable in JMS\\Serializer\\Tests\\Serializer\\SerializationContextFactoryTest
36 $this->handlerRegistry = new HandlerRegistry();
DBaseSerializationTest.php132 protected $handlerRegistry; variable in JMS\\Serializer\\Tests\\Serializer\\BaseSerializationTest
428 $builder = SerializerBuilder::create($this->handlerRegistry, $this->dispatcher);
1235 …$this->handlerRegistry->registerHandler(GraphNavigatorInterface::DIRECTION_DESERIALIZATION, 'Custo…
1503 $this->handlerRegistry->registerHandler(
1618 $this->handlerRegistry = new HandlerRegistry();
1619 $this->handlerRegistry->registerSubscribingHandler(new ConstraintViolationHandler());
1620 $this->handlerRegistry->registerSubscribingHandler(new StdClassHandler());
1621 $this->handlerRegistry->registerSubscribingHandler(new DateHandler());
1622 …$this->handlerRegistry->registerSubscribingHandler(new FormErrorHandler(new IdentityTranslator(new…
1623 $this->handlerRegistry->registerSubscribingHandler(new ArrayCollectionHandler());
[all …]
DXmlSerializationTest.php307 $builder->configureHandlers(static function (HandlerRegistryInterface $handlerRegistry) {
308 … $handlerRegistry->registerSubscribingHandler(new DateHandler(\DateTime::ATOM, 'UTC', false));
322 $builder->configureHandlers(static function (HandlerRegistryInterface $handlerRegistry) {
323 … $handlerRegistry->registerSubscribingHandler(new DateHandler(\DateTime::ATOM, 'UTC', false));
DJsonSerializationTest.php178 $this->handlerRegistry->registerHandler(
197 $this->handlerRegistry->registerHandler(
/plugin/findologicxmlexport/vendor/jms/serializer/src/
DSerializerBuilder.php71 private $handlerRegistry; variable in JMS\\Serializer\\SerializerBuilder
178 …public function __construct(?HandlerRegistryInterface $handlerRegistry = null, ?EventDispatcherInt… argument
181 $this->handlerRegistry = $handlerRegistry ?: new HandlerRegistry();
186 if ($handlerRegistry) {
253 $this->handlerRegistry->registerSubscribingHandler(new DateHandler());
254 $this->handlerRegistry->registerSubscribingHandler(new StdClassHandler());
255 $this->handlerRegistry->registerSubscribingHandler(new ArrayCollectionHandler());
256 $this->handlerRegistry->registerSubscribingHandler(new IteratorHandler());
264 $closure($this->handlerRegistry);
568 $this->handlerRegistry,
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/src/GraphNavigator/
DDeserializationGraphNavigator.php66 private $handlerRegistry; variable in JMS\\Serializer\\GraphNavigator\\DeserializationGraphNavigator
79 HandlerRegistryInterface $handlerRegistry, argument
87 $this->handlerRegistry = $handlerRegistry;
155 …if (null !== $handler = $this->handlerRegistry->getHandler(GraphNavigatorInterface::DIRECTION_DESE…
DSerializationGraphNavigator.php68 private $handlerRegistry; variable in JMS\\Serializer\\GraphNavigator\\SerializationGraphNavigator
81 HandlerRegistryInterface $handlerRegistry, argument
88 $this->handlerRegistry = $handlerRegistry;
191 …if (null !== $handler = $this->handlerRegistry->getHandler(GraphNavigatorInterface::DIRECTION_SERI…