Home
last modified time | relevance | path

Searched refs:handlerRegistry (Results 1 – 15 of 15) sorted by last modified time

/plugin/findologicxmlexport/vendor/jms/serializer/src/GraphNavigator/Factory/
H A 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…
H A 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…
/plugin/findologicxmlexport/vendor/goetas-webservices/xsd2php-runtime/tests/
H A 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);
H A 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/
H A 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…
H A 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…
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DJsonSerializationTest.php178 $this->handlerRegistry->registerHandler(
197 $this->handlerRegistry->registerHandler(
H A DSerializationContextFactoryTest.php25 protected $handlerRegistry; variable in JMS\\Serializer\\Tests\\Serializer\\SerializationContextFactoryTest
36 $this->handlerRegistry = new HandlerRegistry();
H A 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));
H A DBaseSerializationTest.php132 protected $handlerRegistry; variable in JMS\\Serializer\\Tests\\Serializer\\BaseSerializationTest
428 $builder = SerializerBuilder::create($this->handlerRegistry, $this->dispatcher);
1503 $this->handlerRegistry->registerHandler(
1618 $this->handlerRegistry = new HandlerRegistry();
1620 $this->handlerRegistry->registerSubscribingHandler(new StdClassHandler());
1621 $this->handlerRegistry->registerSubscribingHandler(new DateHandler());
1623 $this->handlerRegistry->registerSubscribingHandler(new ArrayCollectionHandler());
1624 $this->handlerRegistry->registerSubscribingHandler(new IteratorHandler());
1625 $this->handlerRegistry->registerHandler(
1633 $this->handlerRegistry->registerHandler(
[all …]
H A 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…
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A 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/tests/Handler/
H A 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…
H A 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());
H A 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…