@@ -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
9595The :class: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag ` instance also
@@ -156,7 +156,7 @@ Identifying a Request
156156
157157In your application, you need a way to identify a request; most of the time,
158158this 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
246246Sending 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