Exemplo n.º 1
0
 /**
  * Removes all values associated with the given object from the storage.
  *
  * If this storage does not any value for the given object, this method does nothing.
  *
  * @param object $object The object to remove.
  *
  * @return static This ObjectStorage instance.
  */
 public function remove($object)
 {
     $this->storage->remove($object);
     return $this;
 }