Home
last modified time | relevance | path

Searched refs:typeParser (Results 1 – 9 of 9) sorted by last modified time

/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/Driver/
H A DDoctrineTypeDriver.php35 $propertyMetadata->setType($this->typeParser->parse($fieldType));
54 $propertyMetadata->setType($this->typeParser->parse($targetEntity));
H A DAbstractDoctrineTypeDriver.php66 protected $typeParser; variable in JMS\\Serializer\\Metadata\\Driver\\AbstractDoctrineTypeDriver
68 …onstruct(DriverInterface $delegate, ManagerRegistry $registry, ?ParserInterface $typeParser = null) argument
72 $this->typeParser = $typeParser ?: new Parser();
H A DDoctrinePHPCRTypeDriver.php34 $propertyMetadata->setType($this->typeParser->parse($fieldType));
50 $propertyMetadata->setType($this->typeParser->parse($targetEntity));
H A DXmlDriver.php30 private $typeParser; variable in JMS\\Serializer\\Metadata\\Driver\\XmlDriver
36 …or, PropertyNamingStrategyInterface $namingStrategy, ?ParserInterface $typeParser = null, ?Compila… argument
39 $this->typeParser = $typeParser ?? new Parser();
213 $pMetadata->setType($this->typeParser->parse((string) $type));
215 $pMetadata->setType($this->typeParser->parse((string) $pElem->type));
H A DYamlDriver.php30 private $typeParser; variable in JMS\\Serializer\\Metadata\\Driver\\YamlDriver
36 …or, PropertyNamingStrategyInterface $namingStrategy, ?ParserInterface $typeParser = null, ?Compila… argument
39 $this->typeParser = $typeParser ?? new Parser();
146 $pMetadata->setType($this->typeParser->parse((string) $pConfig['type']));
H A DAnnotationDriver.php63 private $typeParser; variable in JMS\\Serializer\\Metadata\\Driver\\AnnotationDriver
69 …er, PropertyNamingStrategyInterface $namingStrategy, ?ParserInterface $typeParser = null, ?Compila… argument
72 $this->typeParser = $typeParser ?: new Parser();
196 $propertyMetadata->setType($this->typeParser->parse($annot->name));
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DSerializer.php36 private $typeParser; variable in JMS\\Serializer\\Serializer
75 ?ParserInterface $typeParser = null argument
82 $this->typeParser = $typeParser ?? new Parser();
247 $type = $this->typeParser->parse($type);
H A DSerializerBuilder.php151 private $typeParser; variable in JMS\\Serializer\\SerializerBuilder
180 $this->typeParser = new Parser();
217 $this->typeParser = $parser;
519 $this->typeParser,
560 $this->typeParser
/plugin/findologicxmlexport/vendor/jms/serializer/src/Builder/
H A DDefaultDriverFactory.php24 private $typeParser; variable in JMS\\Serializer\\Builder\\DefaultDriverFactory
36 …ertyNamingStrategyInterface $propertyNamingStrategy, ?ParserInterface $typeParser = null, ?Compila… argument
38 $this->typeParser = $typeParser ?: new Parser();
49 …new YamlDriver($fileLocator, $this->propertyNamingStrategy, $this->typeParser, $this->expressionEv…
50 …new XmlDriver($fileLocator, $this->propertyNamingStrategy, $this->typeParser, $this->expressionEva…
51 …otationDriver($annotationReader, $this->propertyNamingStrategy, $this->typeParser, $this->expressi…
55 … return new AnnotationDriver($annotationReader, $this->propertyNamingStrategy, $this->typeParser);