Acme\DemoBundle\Controller\TodoController::removeTodosAction PHP Method

removeTodosAction() public method

Removes a todo.
public removeTodosAction ( integer $id ) : Response
$id integer the todo id
return Symfony\Component\HttpFoundation\Response
    public function removeTodosAction($id)
    {
        return $this->deleteTodosAction($id);
    }