/plugin/findologicxmlexport/vendor/jms/serializer/src/Builder/ |
H A D | DefaultDriverFactory.php | 24 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);
|
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/Driver/ |
H A D | AbstractDoctrineTypeDriver.php | 66 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 D | DoctrineTypeDriver.php | 35 $propertyMetadata->setType($this->typeParser->parse($fieldType)); 54 $propertyMetadata->setType($this->typeParser->parse($targetEntity));
|
H A D | DoctrinePHPCRTypeDriver.php | 34 $propertyMetadata->setType($this->typeParser->parse($fieldType)); 50 $propertyMetadata->setType($this->typeParser->parse($targetEntity));
|
H A D | XmlDriver.php | 30 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 D | YamlDriver.php | 30 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 D | AnnotationDriver.php | 63 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 D | Serializer.php | 36 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 D | SerializerBuilder.php | 151 private $typeParser; variable in JMS\\Serializer\\SerializerBuilder 180 $this->typeParser = new Parser(); 217 $this->typeParser = $parser; 519 $this->typeParser, 560 $this->typeParser
|