Skip to content

Commit

Permalink
PHPDocs updated
Browse files Browse the repository at this point in the history
  • Loading branch information
SilverFire committed Jan 26, 2017
1 parent 1780efc commit 68752e3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/ResponseInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,29 @@ interface ResponseInterface
*/
public function getRequest();

/**
* @return mixed
*/
public function getData();

/**
* @return string
*/
public function getRawData();

/**
* @param string $name the header name
* @return array|null Array of the header values, or null when header is not present in the response
*/
public function getHeader($name);

/**
* @return string
*/
public function getStatusCode();

/**
* @return static
*/
public function getReasonPhrase();
}

0 comments on commit 68752e3

Please sign in to comment.