Ojs\ApiBundle\Handler\PostHandler::delete PHP Method

delete() public method

Delete a Post.
public delete ( AdminPost $entity ) : AdminPost
$entity Ojs\AdminBundle\Entity\AdminPost
return Ojs\AdminBundle\Entity\AdminPost
    public function delete(AdminPost $entity)
    {
        $this->om->remove($entity);
        $this->om->flush();
        return $this;
    }