diff --git a/proposed/http.md b/proposed/http.md index d87d9e79f..6f13b7fc2 100644 --- a/proposed/http.md +++ b/proposed/http.md @@ -231,22 +231,6 @@ interface RequestInterface extends MessageInterface */ public function __toString(); - /** - * Gets the response object that is associated with this request. - * - * @return ResponseInterface|null Response, or null if not set. - */ - public function getResponse(); - - /** - * Sets the response object that is associated with this request. - * - * @param ResponseInterface $response Response. - * - * @return RequestInterface Reference to the request. - */ - public function setResponse(ResponseInterface $response); - /** * Gets the method. * @@ -339,22 +323,6 @@ interface ResponseInterface extends MessageInterface */ public function __toString(); - /** - * Gets the request object that is associated with this response. - * - * @return RequestInterface|null Request, or null if not set. - */ - public function getRequest(); - - /** - * Sets the request object that is associated with this response. - * - * @param RequestInterface $request Request. - * - * @return ResponseInterface Reference to the response. - */ - public function setRequest(RequestInterface $request); - /** * {@inheritdoc} *