@@ -90,47 +90,47 @@ instance (or a sub-class of), which is a data holder class:
9090All :class: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag ` instances have
9191methods to retrieve and update its data:
9292
93- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::all `: Returns
94- the parameters;
93+ :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::all `
94+ Returns the parameters.
9595
96- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::keys `: Returns
97- the parameter keys;
96+ :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::keys `
97+ Returns the parameter keys.
9898
99- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::replace `:
100- Replaces the current parameters by a new set;
99+ :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::replace `
100+ Replaces the current parameters by a new set.
101101
102- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::add `: Adds
103- parameters;
102+ :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::add `
103+ Adds parameters.
104104
105- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::get `: Returns a
106- parameter by name;
105+ :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::get `
106+ Returns a parameter by name.
107107
108- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::set `: Sets a
109- parameter by name;
108+ :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::set `
109+ Sets a parameter by name.
110110
111- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::has `: Returns
112- ``true `` if the parameter is defined;
111+ :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::has `
112+ Returns ``true `` if the parameter is defined.
113113
114- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::remove `: Removes
115- a parameter.
114+ :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::remove `
115+ Removes a parameter.
116116
117117The :class: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag ` instance also
118118has some methods to filter the input values:
119119
120- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::getAlpha `: Returns
121- the alphabetic characters of the parameter value;
120+ :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::getAlpha `
121+ Returns the alphabetic characters of the parameter value;
122122
123- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::getAlnum `: Returns
124- the alphabetic characters and digits of the parameter value;
123+ :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::getAlnum `
124+ Returns the alphabetic characters and digits of the parameter value;
125125
126- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::getDigits `: Returns
127- the digits of the parameter value;
126+ :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::getDigits `
127+ Returns the digits of the parameter value;
128128
129- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::getInt `: Returns the
130- parameter value converted to integer;
129+ :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::getInt `
130+ Returns the parameter value converted to integer;
131131
132- * :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::filter `: Filters the
133- parameter by using the PHP :phpfunction: `filter_var ` function.
132+ :method: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag::filter `
133+ Filters the parameter by using the PHP :phpfunction: `filter_var ` function.
134134
135135All getters takes up to three arguments: the first one is the parameter name
136136and the second one is the default value to return if the parameter does not
@@ -241,14 +241,14 @@ Accessing `Accept-*` Headers Data
241241You can easily access basic data extracted from ``Accept-* `` headers
242242by using the following methods:
243243
244- * :method: `Symfony\\ Component\\ HttpFoundation\\ Request::getAcceptableContentTypes `:
245- returns the list of accepted content types ordered by descending quality;
244+ :method: `Symfony\\ Component\\ HttpFoundation\\ Request::getAcceptableContentTypes `
245+ Returns the list of accepted content types ordered by descending quality.
246246
247- * :method: `Symfony\\ Component\\ HttpFoundation\\ Request::getLanguages `:
248- returns the list of accepted languages ordered by descending quality;
247+ :method: `Symfony\\ Component\\ HttpFoundation\\ Request::getLanguages `
248+ Returns the list of accepted languages ordered by descending quality.
249249
250- * :method: `Symfony\\ Component\\ HttpFoundation\\ Request::getCharsets `:
251- returns the list of accepted charsets ordered by descending quality.
250+ :method: `Symfony\\ Component\\ HttpFoundation\\ Request::getCharsets `
251+ Returns the list of accepted charsets ordered by descending quality.
252252
253253.. versionadded :: 2.2
254254 The :class: `Symfony\\ Component\\ HttpFoundation\\ AcceptHeader ` class was
0 commit comments