Skip to content

Commit 7aaf73a

Browse files
committed
[HttpFoundation] Fix links to ParameterBag methods
1 parent 6d185d5 commit 7aaf73a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

components/http_foundation/introduction.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,19 +115,19 @@ methods to retrieve and update its data:
115115
The :class:`Symfony\\Component\\HttpFoundation\\ParameterBag` instance also
116116
has some methods to filter the input values:
117117

118-
* :method:`Symfony\\Component\\HttpFoundation\\Request::getAlpha`: Returns
118+
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBag::getAlpha`: Returns
119119
the alphabetic characters of the parameter value;
120120

121-
* :method:`Symfony\\Component\\HttpFoundation\\Request::getAlnum`: Returns
121+
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBag::getAlnum`: Returns
122122
the alphabetic characters and digits of the parameter value;
123123

124-
* :method:`Symfony\\Component\\HttpFoundation\\Request::getDigits`: Returns
124+
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBag::getDigits`: Returns
125125
the digits of the parameter value;
126126

127-
* :method:`Symfony\\Component\\HttpFoundation\\Request::getInt`: Returns the
127+
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBag::getInt`: Returns the
128128
parameter value converted to integer;
129129

130-
* :method:`Symfony\\Component\\HttpFoundation\\Request::filter`: Filters the
130+
* :method:`Symfony\\Component\\HttpFoundation\\ParameterBag::filter`: Filters the
131131
parameter by using the PHP ``filter_var()`` function.
132132

133133
All getters takes up to three arguments: the first one is the parameter name

0 commit comments

Comments
 (0)