File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Creating a Client
26
26
The component only provides an abstract client and does not provide any backend
27
27
ready to use for the HTTP layer.
28
28
29
- To create your own client you must extend the abstract client class and
29
+ To create your own client, you must extend the abstract `` Client `` class and
30
30
implement the :method: `Symfony\\ Component\\ BrowserKit\\ Client::doRequest ` method.
31
31
This method accepts a request and should return a response::
32
32
@@ -39,8 +39,7 @@ This method accepts a request and should return a response::
39
39
{
40
40
protected function doRequest($request)
41
41
{
42
- // convert request into a response
43
- // ...
42
+ // ... convert request into a response
44
43
45
44
return new Response($content, $status, $headers);
46
45
}
You can’t perform that action at this time.
0 commit comments