8000 [HttpKernel] Add @method PHPDoc for getRequest and getResponse back to Client by teohhanhui · Pull Request #32213 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[HttpKernel] Add @method PHPDoc for getRequest and getResponse back to Client #32213

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[HttpKernel] Add @method PHPDoc for getRequest and getResponse back t…
…o Client
  • Loading branch information
teohhanhui committed Jun 27, 2019
commit 332135186a78d1dd6c0af7d9d33427538c4bb67a
3 changes: 3 additions & 0 deletions src/Symfony/Component/HttpKernel/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
/**
* Client simulates a browser and makes requests to an HttpKernel instance.
*
* @method Request getRequest() A Request instance
* @method Response getResponse() A Response instance
*
* @deprecated since Symfony 4.3, use HttpKernelBrowser instead.
*/
class Client extends AbstractBrowser
Expand Down
0