Home
last modified time | relevance | path

Searched refs:ArrayCollection (Results 1 – 21 of 21) sorted by path

/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG-0.x.md
H A DCHANGELOG.md444 - `ArrayCollection`
458 - `ArrayCollection` only supports integer keys
498 - Removed the following `ArrayCollection` methods:
/plugin/commonmark/vendor/league/commonmark/src/Block/Element/
H A DAbstractStringContainerBlock.php
/plugin/commonmark/vendor/league/commonmark/src/Util/
H A DArrayCollection.php27 final class ArrayCollection implements \IteratorAggregate, \Countable, \ArrayAccess
26 class ArrayCollection implements \IteratorAggregate, \Countable, \ArrayAccess global() class
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/
H A DDoctrineEmptyCollectionFilter.php7 use Doctrine\Common\Collections\ArrayCollection; alias
26 $reflectionProperty->setValue($object, new ArrayCollection());
/plugin/findologicxmlexport/vendor/jms/serializer/
H A 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…
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A 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/src/Handler/
H A 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/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/
H A DBlogPost.php7 use Doctrine\Common\Collections\ArrayCollection; alias
115 $this->comments = new ArrayCollection();
H A DCircularReferenceParent.php7 use Doctrine\Common\Collections\ArrayCollection; alias
25 $this->anotherCollection = new ArrayCollection();
41 $this->anotherCollection = new ArrayCollection();
H A DPersonCollection.php7 use Doctrine\Common\Collections\ArrayCollection; alias
30 $this->persons = new ArrayCollection();
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/Doctrine/
H A DBlogPost.php7 use Doctrine\Common\Collections\ArrayCollection; alias
87 $this->comments = new ArrayCollection();
H A DComment.php7 use Doctrine\Common\Collections\ArrayCollection; alias
35 $this->blogPost = new ArrayCollection();
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/Doctrine/SingleTableInheritance/
H A DClazz.php7 use Doctrine\Common\Collections\ArrayCollection; alias
27 $this->students = new ArrayCollection($students);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/DoctrinePHPCR/
H A DBlogPost.php7 use Doctrine\Common\Collections\ArrayCollection; alias
74 $this->comments = new ArrayCollection();
H A DComment.php7 use Doctrine\Common\Collections\ArrayCollection; alias
35 $this->blogPost = new ArrayCollection();
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DArrayCollectionDepthTest.php7 use Doctrine\Common\Collections\ArrayCollection; alias
44 [new ArrayCollection($data)],
H A 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']);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/yml/
H A DBlogPost.yml34 type: ArrayCollection<JMS\Serializer\Tests\Fixtures\Comment>
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A 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/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/
H A DDoctrineEmptyCollectionFilter.php7 use Doctrine\Common\Collections\ArrayCollection; alias
26 $reflectionProperty->setValue($object, new ArrayCollection());