Skip to content

Commit

Permalink
Fix PHPCS errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed May 16, 2016
1 parent e3ce83f commit 609224e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Http/Client/Response.php
Expand Up @@ -304,6 +304,8 @@ public function statusCode()

/**
* {@inheritdoc}
*
* @return int The status code.
*/
public function getStatusCode()
{
Expand All @@ -312,6 +314,10 @@ public function getStatusCode()

/**
* {@inheritdoc}
*
* @param int $code The status code to set.
* @param string $reasonPhrase The status reason phrase.
* @return self A copy of the current object with an updated status code.
*/
public function withStatus($code, $reasonPhrase = '')
{
Expand All @@ -323,6 +329,8 @@ public function withStatus($code, $reasonPhrase = '')

/**
* {@inheritdoc}
*
* @return string The current reason phrase.
*/
public function getReasonPhrase()
{
Expand Down

0 comments on commit 609224e

Please sign in to comment.