Mercurial > hg > isophonics-drupal-site
annotate vendor/doctrine/collections/README.md @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 7a779792577d |
children |
rev | line source |
---|---|
Chris@0 | 1 # Doctrine Collections |
Chris@0 | 2 |
Chris@0 | 3 [](https://travis-ci.org/doctrine/collections) |
Chris@12 | 4 [](https://scrutinizer-ci.com/g/doctrine/collections/?branch=master) |
Chris@12 | 5 [](https://scrutinizer-ci.com/g/doctrine/collections/?branch=master) |
Chris@0 | 6 |
Chris@0 | 7 Collections Abstraction library |
Chris@0 | 8 |
Chris@0 | 9 ## Changelog |
Chris@0 | 10 |
Chris@0 | 11 ### v1.3.0 |
Chris@0 | 12 |
Chris@0 | 13 * [Explicit casting of first and max results in criteria API](https://github.com/doctrine/collections/pull/26) |
Chris@0 | 14 * [Keep keys when using `ArrayCollection#matching()` with sorting](https://github.com/doctrine/collections/pull/49) |
Chris@0 | 15 * [Made `AbstractLazyCollection#$initialized` protected for extensibility](https://github.com/doctrine/collections/pull/52) |
Chris@0 | 16 |
Chris@0 | 17 ### v1.2.0 |
Chris@0 | 18 |
Chris@0 | 19 * Add a new ``AbstractLazyCollection`` |
Chris@0 | 20 |
Chris@0 | 21 ### v1.1.0 |
Chris@0 | 22 |
Chris@0 | 23 * Deprecated ``Comparison::IS``, because it's only there for SQL semantics. |
Chris@0 | 24 These are fixed in the ORM instead. |
Chris@0 | 25 * Add ``Comparison::CONTAINS`` to perform partial string matches: |
Chris@0 | 26 |
Chris@0 | 27 $criteria->andWhere($criteria->expr()->contains('property', 'Foo')); |