Pimcore\Model\Document\Snippet\Dao::delete PHP Метод

delete() публичный Метод

Deletes the object from database
public delete ( )
    public function delete()
    {
        try {
            $this->db->delete("documents_snippet", $this->db->quoteInto("id = ?", $this->model->getId()));
            parent::delete();
        } catch (\Exception $e) {
            throw $e;
        }
    }