Yaffs site version 1.1
[yaffs-website] / vendor / doctrine / collections / README.md
1 # Doctrine Collections
2
3 [![Build Status](https://travis-ci.org/doctrine/collections.svg?branch=master)](https://travis-ci.org/doctrine/collections)
4 [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/doctrine/collections/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/doctrine/collections/?branch=master)
5 [![Code Coverage](https://scrutinizer-ci.com/g/doctrine/collections/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/doctrine/collections/?branch=master)
6
7 Collections Abstraction library
8
9 ## Changelog
10
11 ### v1.3.0
12
13 * [Explicit casting of first and max results in criteria API](https://github.com/doctrine/collections/pull/26)
14 * [Keep keys when using `ArrayCollection#matching()` with sorting](https://github.com/doctrine/collections/pull/49)
15 * [Made `AbstractLazyCollection#$initialized` protected for extensibility](https://github.com/doctrine/collections/pull/52)
16
17 ### v1.2.0
18
19 * Add a new ``AbstractLazyCollection``
20
21 ### v1.1.0
22
23 * Deprecated ``Comparison::IS``, because it's only there for SQL semantics.
24   These are fixed in the ORM instead.
25 * Add ``Comparison::CONTAINS`` to perform partial string matches:
26
27         $criteria->andWhere($criteria->expr()->contains('property', 'Foo'));