Home
last modified time | relevance | path

Searched refs:ArrayCollection (Results 1 – 16 of 16) sorted by relevance

/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
DArrayCollectionHandlerTest.php7 use Doctrine\Common\Collections\ArrayCollection; alias
31 $collection = new ArrayCollection(['foo']);
49 …$factoryMock->method('getMetadataForClass')->willReturn(new ClassMetadata(ArrayCollection::class));
56 $collection = new ArrayCollection(['foo']);
DArrayCollectionDepthTest.php7 use Doctrine\Common\Collections\ArrayCollection; alias
44 [new ArrayCollection($data)],
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/
DCircularReferenceParent.php7 use Doctrine\Common\Collections\ArrayCollection; alias
25 $this->anotherCollection = new ArrayCollection();
41 $this->anotherCollection = new ArrayCollection();
DPersonCollection.php7 use Doctrine\Common\Collections\ArrayCollection; alias
30 $this->persons = new ArrayCollection();
DBlogPost.php7 use Doctrine\Common\Collections\ArrayCollection; alias
115 $this->comments = new ArrayCollection();
/plugin/findologicxmlexport/vendor/jms/serializer/src/Handler/
DArrayCollectionHandler.php7 use Doctrine\Common\Collections\ArrayCollection; alias
90 …ionVisitorInterface $visitor, $data, array $type, DeserializationContext $context): ArrayCollection
95 return new ArrayCollection($visitor->visitArray($data, $type));
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/
DDoctrineEmptyCollectionFilter.php7 use Doctrine\Common\Collections\ArrayCollection; alias
26 $reflectionProperty->setValue($object, new ArrayCollection());
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/
DDoctrineEmptyCollectionFilter.php7 use Doctrine\Common\Collections\ArrayCollection; alias
26 $reflectionProperty->setValue($object, new ArrayCollection());
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/Doctrine/
DComment.php7 use Doctrine\Common\Collections\ArrayCollection; alias
35 $this->blogPost = new ArrayCollection();
DBlogPost.php7 use Doctrine\Common\Collections\ArrayCollection; alias
87 $this->comments = new ArrayCollection();
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/DoctrinePHPCR/
DComment.php7 use Doctrine\Common\Collections\ArrayCollection; alias
35 $this->blogPost = new ArrayCollection();
DBlogPost.php7 use Doctrine\Common\Collections\ArrayCollection; alias
74 $this->comments = new ArrayCollection();
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/Doctrine/SingleTableInheritance/
DClazz.php7 use Doctrine\Common\Collections\ArrayCollection; alias
27 $this->students = new ArrayCollection($students);
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
Dannotations.rst381 | ArrayCollection<T> | Similar to array<T>, but will be deser…
382 | | into Doctrine's ArrayCollection class.…
384 | ArrayCollection<K, V> | Similar to array<K, V>, but will be de…
385 | | into Doctrine's ArrayCollection class.…
421 * @Type("ArrayCollection<MyNamespace\Comment>")
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
DBaseSerializationTest.php7 use Doctrine\Common\Collections\ArrayCollection; alias
724 self::assertAttributeEquals(new ArrayCollection([$comment]), 'comments', $deserialized);
753 self::assertAttributeEquals(new ArrayCollection(), 'comments', $deserialized);
/plugin/findologicxmlexport/vendor/jms/serializer/
DCHANGELOG.md134 - Deserialization to ArrayCollection not working as expected [\#9](https://github.com/schmittjoh/se…
169 - MaxDepth exclusion strategy for OneToMany \(ArrayCollection\) type triggers too many doctrine que…
604 - I'm receiving "Class ArrayCollection does not exist" when serializing \(temporarily solved with a…
756 - Trying to decorate a member to ArrayCollection but gets an error when deserilizing because compos…