Home
last modified time | relevance | path

Searched refs:serializer (Results 26 – 50 of 56) sorted by relevance

123

/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/Doctrine/
H A DIntegrationTest.php38 private $serializer; variable in JMS\\Serializer\\Tests\\Serializer\\Doctrine\\IntegrationTest
43 $json = $this->serializer->serialize($school, 'json');
46 $deserialized = $this->serializer->deserialize($json, Organization::class, 'json');
53 $json = $this->serializer->serialize($student, 'json');
56 $deserialized = $this->serializer->deserialize($json, Person::class, 'json');
80 $json = $this->serializer->serialize($reloadedClass, 'json');
104 $this->serializer = SerializerBuilder::create()
H A DObjectConstructorTest.php44 private $serializer; variable in JMS\\Serializer\\Tests\\Serializer\\Doctrine\\ObjectConstructorTest
196 $serializer = $this->createSerializerWithDoctrineObjectConstructor();
207 $serverDeserialized = $serializer->deserialize($jsonData, Server::class, 'json');
238 $this->serializer = SerializerBuilder::create()
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DArrayCollectionDepthTest.php19 private $serializer; variable in JMS\\Serializer\\Tests\\Handler\\ArrayCollectionDepthTest
23 $this->serializer = SerializerBuilder::create()->build();
35 … $result = $this->serializer->serialize(new CollectionWrapper($collection), 'json', $context);
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
H A Dexclusion_strategies.rst6 The serializer supports different exclusion strategies. Each strategy allows
26 * The following annotations tells the serializer to skip all properties which
80 …$serializer->serialize(new VersionObject(), 'json', SerializationContext::create()->setVersion(1));
115 You can then tell the serializer which groups to serialize in your controller::
119 …$serializer->serialize(new BlogPost(), 'json', SerializationContext::create()->setGroups(array('li…
123 …$serializer->serialize(new BlogPost(), 'json', SerializationContext::create()->setGroups(array('De…
198 $serializer->serialize($john, 'json', $context);
261 You need to tell the serializer to take into account MaxDepth checks::
265 $serializer->serialize($data, 'json', SerializationContext::create()->enableMaxDepthChecks());
297 To enable this feature you have to set the Expression Evaluator when initializing the serializer.
[all …]
H A Dstdclass.rst4 The serializer offers support for serializing ``stdClass`` objects, however the use of
/plugin/findologicxmlexport/vendor/jms/serializer/tests/
H A Dbenchmark.php51 $serializer = SerializerBuilder::create()->build(); variable
54 $f = static function () use ($serializer, $collection, $format) {
55 $serializer->serialize($collection, $format);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DNamespaceBuilderInterface.php34 * and serializer objects are provided so that your namespace may do whatever custom
38 * @param SerializerInterface $serializer
41 public function getObject(Transport $transport, SerializerInterface $serializer); argument
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dconnection-factory.asciidoc22 SerializerInterface $serializer,
45 $serializer,
57 working HTTP handler, serializer, logger and tracer
H A Dcommunity.asciidoc85 - Automatically generate mappings using a serializer.
/plugin/findologicxmlexport/vendor/jms/serializer/doc/
H A Dindex.rst26 composer require jms/serializer
34 $serializer = JMS\Serializer\SerializerBuilder::create()->build();
35 $jsonContent = $serializer->serialize($data, 'json');
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DJsonSerializationTest.php327 …uals('{"jim":{"full_name":"Jim"},"mark":{"full_name":"Mark"}}', $this->serializer->serialize($data…
328 …self::assertEquals('[{"full_name":"Jim"},{"full_name":"Mark"}]', $this->serializer->serialize($dat…
329 …uals('{"jim":{"full_name":"Jim"},"mark":{"full_name":"Mark"}}', $this->serializer->serialize($data…
335 …self::assertEquals('[{"full_name":"Jim"},{"full_name":"Mark"}]', $this->serializer->serialize($dat…
336 …self::assertEquals('{"0":{"full_name":"Jim"},"1":{"full_name":"Mark"}}', $this->serializer->serial…
337 …self::assertEquals('{"0":{"full_name":"Jim"},"1":{"full_name":"Mark"}}', $this->serializer->serial…
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnection.php57 protected $serializer; variable in Elasticsearch\\Connections\\Connection
133 SerializerInterface $serializer, argument
190 $this->serializer = $serializer;
207 $body = $this->serializer->serialize($body);
340 $response['body'] = $this->serializer->deserialize($response['body'], $response['transfer_stats']);
765 $error = $this->serializer->deserialize($response['body'], $response['transfer_stats']);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Dfa/
H A DDFA.php167 $serializer = new DFASerializer($this, $vocabulary);
169 return (string) $serializer;
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DMETA.md6 github_changelog_generator --user=schmittjoh --project=serializer --pull-requests --no-compare-link…
H A DUPGRADING.md50 - [Here](https://github.com/schmittjoh/serializer/milestone/3) a list of issues and pull requests l…
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dxml_reference.rst5 <!-- MyBundle\Resources\config\serializer\Fully.Qualified.ClassName.xml -->
7 <serializer>
105 </serializer>
H A Dyml_reference.rst5 # Vendor\MyBundle\Resources\config\serializer\Model.ClassName.yml
H A Dannotations.rst56 $serializer = \JMS\Serializer\SerializerBuilder::create()
93 the properties should be accessed. By default, the serializer will retrieve, or
406 …ne jms/serializer is used then default format is `\DateTime::ISO8601` (which is not compatible wit…
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/
H A DCache.SerializerPermissions.txt
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClientBuilder.asciidoc259 .`setSerializer(Elasticsearch\Serializers\SerializerInterface|string $serializer)`
264 Set the serializer
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DAbstractEndpoint.php67 protected $serializer; variable in Elasticsearch\\Endpoints\\AbstractEndpoint
/plugin/icalevents/vendor/sabre/xml/
H A DCHANGELOG.md34 * Any array thrown into the serializer with numeric keys is now simply
49 separate the object you want to serialize from the serializer. This uses the
/plugin/webdav/vendor/sabre/xml/
H A DCHANGELOG.md40 * Any array thrown into the serializer with numeric keys is now simply
55 separate the object you want to serialize from the serializer. This uses the
/plugin/codemirror/dist/modes/
H A Dwebidl.min.js.map1 …able\", \"legacycaller\", \"maplike\",\n \"partial\", \"required\", \"serializer\", \"setlike\", …
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dehcache-3.8.1.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE META-INF/maven/ META ...

123