You are here

public function AbstractLazyCollection::offsetSet in Plug 7

File

lib/doctrine/collections/lib/Doctrine/Common/Collections/AbstractLazyCollection.php, line 299

Class

AbstractLazyCollection
Lazy collection that is backed by a concrete collection

Namespace

Doctrine\Common\Collections

Code

public function offsetSet($offset, $value) {
  $this
    ->initialize();
  $this->collection
    ->offsetSet($offset, $value);
}