Skip to content

Commit

Permalink
move method
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Dec 7, 2020
1 parent c11a0e8 commit c721d5e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/Illuminate/Http/Client/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,16 +120,6 @@ public function effectiveUri()
return $this->transferStats->getEffectiveUri();
}

/**
* Get the handler stats of the response.
*
* @return \Psr\Http\Message\UriInterface
*/
public function handlerStats()
{
return $this->transferStats->getHandlerStats();
}

/**
* Determine if the request was successful.
*
Expand Down Expand Up @@ -215,6 +205,16 @@ public function cookies()
return $this->cookies;
}

/**
* Get the handler stats of the response.
*
* @return array
*/
public function handlerStats()
{
return $this->transferStats->getHandlerStats();
}

/**
* Get the underlying PSR response for the response.
*
Expand Down

0 comments on commit c721d5e

Please sign in to comment.