public function ArrayCollection::clear

Clears the collection.

Overrides Collection::clear

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/ArrayCollection.php, line 442

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();
}