public function AbstractLazyCollection::clear in Plug 7
Clears the collection, removing all elements.
Return value
void
Overrides Collection::clear
File
- lib/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php, line 65
Class
- AbstractLazyCollection
- Lazy collection that is backed by a concrete collection
Namespace
Doctrine\Common\CollectionsCode
public function clear() {
$this
->initialize();
$this->collection
->clear();
}