public function ArrayCollection::offsetUnset in Plug 7
Required by interface ArrayAccess.
File
- lib/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ ArrayCollection.php, line 171
Class
- ArrayCollection
- An ArrayCollection is a Collection implementation that wraps a regular PHP array.
Namespace
Doctrine\Common\CollectionsCode
public function offsetUnset($offset) {
return $this
->remove($offset);
}