Skip to content

Commit

Permalink
Merge pull request #150 from indeyets/fix-response-class
Browse files Browse the repository at this point in the history
[6.x] Use TestResponse as return value in PHPDoc
  • Loading branch information
taylorotwell authored Nov 16, 2020
2 parents 5f86191 + c8d0665 commit 0baa03e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Concerns/MakesHttpRequests.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ trait MakesHttpRequests
/**
* The last response returned by the application.
*
* @var \Illuminate\Http\Response
* @var \Laravel\BrowserKitTesting\TestResponse
*/
protected $response;

Expand Down Expand Up @@ -555,7 +555,7 @@ protected function withServerVariables(array $server)
* @param array $files
* @param array $server
* @param string $content
* @return \Illuminate\Http\Response
* @return \Laravel\BrowserKitTesting\TestResponse
*/
public function call($method, $uri, $parameters = [], $cookies = [], $files = [], $server = [], $content = null)
{
Expand Down Expand Up @@ -589,7 +589,7 @@ public function call($method, $uri, $parameters = [], $cookies = [], $files = []
* @param array $files
* @param array $server
* @param string $content
* @return \Illuminate\Http\Response
* @return \Laravel\BrowserKitTesting\TestResponse
*/
public function callSecure($method, $uri, $parameters = [], $cookies = [], $files = [], $server = [], $content = null)
{
Expand All @@ -609,7 +609,7 @@ public function callSecure($method, $uri, $parameters = [], $cookies = [], $file
* @param array $files
* @param array $server
* @param string $content
* @return \Illuminate\Http\Response
* @return \Laravel\BrowserKitTesting\TestResponse
*/
public function action($method, $action, $wildcards = [], $parameters = [], $cookies = [], $files = [], $server = [], $content = null)
{
Expand All @@ -629,7 +629,7 @@ public function action($method, $action, $wildcards = [], $parameters = [], $coo
* @param array $files
* @param array $server
* @param string $content
* @return \Illuminate\Http\Response
* @return \Laravel\BrowserKitTesting\TestResponse
*/
public function route($method, $name, $routeParameters = [], $parameters = [], $cookies = [], $files = [], $server = [], $content = null)
{
Expand Down

0 comments on commit 0baa03e

Please sign in to comment.