You are here

public function ArrayCollection::clear in Plug 7

Clears the collection, removing all elements.

Return value

void

Overrides Collection::clear

File

lib/doctrine/collections/lib/Doctrine/Common/Collections/ArrayCollection.php, line 343

Class

ArrayCollection
An ArrayCollection is a Collection implementation that wraps a regular PHP array.

Namespace

Doctrine\Common\Collections

Code

public function clear() {
  $this->elements = array();
}