Skip to content

Commit

Permalink
Remove the link between requests and responses
Browse files Browse the repository at this point in the history
  • Loading branch information
thewilkybarkid committed Jan 2, 2013
1 parent 1e09efe commit 1eea613
Showing 1 changed file with 0 additions and 32 deletions.
32 changes: 0 additions & 32 deletions proposed/http.md
Expand Up @@ -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.
*
Expand Down Expand Up @@ -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}
*
Expand Down

0 comments on commit 1eea613

Please sign in to comment.