Pimcore\Model\Translation\AbstractTranslation\Dao::delete PHP Method

delete() public method

Deletes object from database
public delete ( ) : void
return void
    public function delete()
    {
        $this->db->delete(static::getTableName(), $this->db->quoteInto("`key`= ?", $this->model->getKey()));
        $this->model->clearDependentCache();
    }