Doctrine\ODM\CouchDB\DocumentManager::remove PHP Method

remove() public method

public remove ( $object )
    public function remove($object)
    {
        $this->unitOfWork->scheduleRemove($object);
    }

Usage Example

 /**
  * @param object $object
  * @throws \TYPO3\Flow\Persistence\Exception\IllegalObjectTypeException
  * @return void
  */
 public function remove($object)
 {
     if (!is_object($object) || !$object instanceof $this->entityClassName) {
         $type = is_object($object) ? get_class($object) : gettype($object);
         throw new \TYPO3\Flow\Persistence\Exception\IllegalObjectTypeException('The value given to remove() was ' . $type . ' , however the ' . get_class($this) . ' can only handle ' . $this->entityClassName . ' instances.', 1298403442);
     }
     $this->documentManager->remove($object);
 }
All Usage Examples Of Doctrine\ODM\CouchDB\DocumentManager::remove