lithium\tests\mocks\action\MockPostsController::delete PHP Method

delete() public method

public delete ( $id = null )
    public function delete($id = null)
    {
        if (empty($id)) {
            return $this->redirect('/posts', array('exit' => false));
        }
        return "Deleted {$id}";
    }