File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -37,11 +37,16 @@ Creating a Client
37
37
~~~~~~~~~~~~~~~~~
38
38
39
39
The component only provides an abstract client and does not provide any backend
40
- ready to use for the HTTP layer.
40
+ ready to use for the HTTP layer. To create your own client, you must extend the
41
+ ``AbstractBrowser `` class and implement the
42
+ :method: `Symfony\\ Component\\ BrowserKit\\ AbstractBrowser::doRequest ` method.
41
43
42
- To create your own client, you must extend the ``AbstractBrowser `` class and
43
- implement the :method: `Symfony\\ Component\\ BrowserKit\\ AbstractBrowser::doRequest ` method.
44
- This method accepts a request and should return a response::
44
+ .. deprecated :: 4.3
45
+
46
+ In Symfony 4.3 and earlier versions, the ``AbstractBrowser `` class was called
47
+ ``Client `` (which is now deprecated).
48
+
49
+ The ``doRequest() `` method accepts a request and should return a response::
45
50
46
51
namespace Acme;
47
52
You can’t perform that action at this time.
0 commit comments