kdyby/doctrine-collections-readonly

Read-only collection wrapper for easier work with Doctrine entity collections

v1.0.0 2017-05-18 20:11 UTC

This package is auto-updated.

Last update: 2024-04-22 02:54:18 UTC


README

This package provides an implementation of a readonly collection wrapper, so you can return collections from your entities, without having to copy the contents of the collection, or exposing the object's state outside of it's control.

Build Status Downloads this Month Latest stable Coverage Status

Installation

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

$ composer require kdyby/doctrine-collections-readonly

Usage

Simply wrap your collection and return it.

public function getComments() : Collection
{
	return new ReadOnlyCollectionWrapper($this->comments);
}

Now you can use the Collection api as you're used to, you just cannot modifying it :)

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