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
2626The component only provides an abstract client and does not provide any backend
2727ready to use for the HTTP layer.
2828
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
3030implement the :method: `Symfony\\ Component\\ BrowserKit\\ Client::doRequest ` method.
3131This method accepts a request and should return a response::
3232
@@ -39,8 +39,7 @@ This method accepts a request and should return a response::
3939 {
4040 protected function doRequest($request)
4141 {
42- // convert request into a response
43- // ...
42+ // ... convert request into a response
4443
4544 return new Response($content, $status, $headers);
4645 }
You can’t perform that action at this time.
0 commit comments