We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd35c93 commit 5aec7c4Copy full SHA for 5aec7c4
components/browser_kit/introduction.rst
@@ -26,7 +26,7 @@ Creating a Client
26
The component only provides an abstract client and does not provide any backend
27
ready to use for the HTTP layer.
28
29
-To create your own client you must extend the abstract client class and
+To create your own client, you must extend the abstract ``Client`` class and
30
implement the :method:`Symfony\\Component\\BrowserKit\\Client::doRequest` method.
31
This method accepts a request and should return a response::
32
@@ -39,8 +39,7 @@ This method accepts a request and should return a response::
39
{
40
protected function doRequest($request)
41
42
- // convert request into a response
43
- // ...
+ // ... convert request into a response
44
45
return new Response($content, $status, $headers);
46
}
0 commit comments