kdyby/doctrine-collections-lazy

Lazy collection for doctrine/collections

v1.0.0 2017-05-18 15:26 UTC

This package is auto-updated.

Last update: 2024-04-22 03:34:04 UTC


README

This package provides an implementation of lazy collection for Doctrine/Collections.

Build Status Downloads this Month Latest stable Coverage Status

Installation

The best way to install Kdyby/DoctrineCollectionsLazy is using Composer:

$ composer require kdyby/doctrine-collections-lazy

Usage

$collection =  new LazyCollection(function () {
	return [1 => 2, 3 => 4];
});

Homepage http://www.kdyby.org and repository http://github.com/Kdyby/DoctrineCollectionsLazy.