@@ -71,25 +71,25 @@ methods to retrieve and update its data:
71
71
* :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::all `: Returns
72
72
the parameters;
73
73
74
- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBagkeys `: Returns
74
+ * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::keys `: Returns
75
75
the parameter keys;
76
76
77
- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBagreplace `:
77
+ * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::replace `:
78
78
Replaces the current parameters by a new set;
79
79
80
- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBagadd `: Adds
80
+ * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::add `: Adds
81
81
parameters;
82
82
83
- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBagget `: Returns a
83
+ * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::get `: Returns a
84
84
parameter by name;
85
85
86
- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBagset `: Sets a
86
+ * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::set `: Sets a
87
87
parameter by name;
88
88
89
- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBaghas `: Returns
89
+ * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::has `: Returns
90
90
true if the parameter is defined;
91
91
92
- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBagremove `: Removes
92
+ * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::remove `: Removes
93
93
a parameter.
94
94
95
95
The :class: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag ` instance also
@@ -156,7 +156,7 @@ Identifying a Request
156
156
157
157
In your application, you need a way to identify a request; most of the time,
158
158
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::
160
160
161
161
// for a request to http://example.com/blog/index.php/post/hello-world
162
162
// the path info is "/post/hello-world"
@@ -244,7 +244,7 @@ specification by calling the
244
244
$response->prepare($request);
245
245
246
246
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 `::
248
248
249
249
$response->send();
250
250
0 commit comments