Skip to content

Commit 6badfbf

Browse files
committed
fixed markup
1 parent 1c4ebcf commit 6badfbf

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

components/http_foundation.rst

+9-9
Original file line numberDiff line numberDiff line change
@@ -71,25 +71,25 @@ methods to retrieve and update its data:
7171
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBag::all`: Returns
7272
the parameters;
7373

74-
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBagkeys`: Returns
74+
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBag::keys`: Returns
7575
the parameter keys;
7676

77-
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBagreplace`:
77+
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBag::replace`:
7878
Replaces the current parameters by a new set;
7979

80-
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBagadd`: Adds
80+
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBag::add`: Adds
8181
parameters;
8282

83-
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBagget`: Returns a
83+
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBag::get`: Returns a
8484
parameter by name;
8585

86-
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBagset`: Sets a
86+
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBag::set`: Sets a
8787
parameter by name;
8888

89-
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBaghas`: Returns
89+
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBag::has`: Returns
9090
true if the parameter is defined;
9191

92-
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBagremove`: Removes
92+
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBag::remove`: Removes
9393
a parameter.
9494

9595
The :class:`Symfony\\Component\\HttpFoundation\\ParameterBag` instance also
@@ -156,7 +156,7 @@ Identifying a Request
156156

157157
In your application, you need a way to identify a request; most of the time,
158158
this is done via the "path info" of the request, which can be accessed via the
159-
:method:`Symfony\\Component\\HttpFoundation\\Request::getPathInfo` method:
159+
:method:`Symfony\\Component\\HttpFoundation\\Request::getPathInfo` method::
160160

161161
// for a request to http://example.com/blog/index.php/post/hello-world
162162
// the path info is "/post/hello-world"
@@ -244,7 +244,7 @@ specification by calling the
244244
$response->prepare($request);
245245

246246
Sending the response to the client is then as simple as calling
247-
:method:`Symfony\\Component\\HttpFoundation\\Response::send`:
247+
:method:`Symfony\\Component\\HttpFoundation\\Response::send`::
248248

249249
$response->send();
250250

0 commit comments

Comments
 (0)