File tree 1 file changed +3
-3
lines changed
tests/Functional/Controller
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -99,23 +99,23 @@ public function fetchArticleFromMapQueryParameterOverwriteParameters(
99
99
#[Route('/article_map_query_parameter_invalid_regexp ' , methods: ['GET ' ])]
100
100
#[OA \Response(response: '200 ' , description: '' )]
101
101
public function fetchArticleWithInvalidRegexp (
102
- #[MapQueryParameter(filter: FILTER_VALIDATE_REGEXP , options: ['regexp ' => 'This is not a valid regexp ' ])]
102
+ #[MapQueryParameter(filter: \ FILTER_VALIDATE_REGEXP , options: ['regexp ' => 'This is not a valid regexp ' ])]
103
103
string $ regexp ,
104
104
) {
105
105
}
106
106
107
107
#[Route('/article_map_query_parameter_unsupported_flag ' , methods: ['GET ' ])]
108
108
#[OA \Response(response: '200 ' , description: '' )]
109
109
public function fetchArticleWithUnsupportedRegexpFlag (
110
- #[MapQueryParameter(filter: FILTER_VALIDATE_REGEXP , options: ['regexp ' => '/\ZUnsupportedFlag/ ' ])]
110
+ #[MapQueryParameter(filter: \ FILTER_VALIDATE_REGEXP , options: ['regexp ' => '/\ZUnsupportedFlag/ ' ])]
111
111
string $ regexp ,
112
112
) {
113
113
}
114
114
115
115
#[Route('/article_map_query_parameter_replaced_flag ' , methods: ['GET ' ])]
116
116
#[OA \Response(response: '200 ' , description: '' )]
117
117
public function fetchArticleWithReplacedRegexpFlag (
118
- #[MapQueryParameter(filter: FILTER_VALIDATE_REGEXP , options: ['regexp ' => '/\ADifferentFlag/ ' ])]
118
+ #[MapQueryParameter(filter: \ FILTER_VALIDATE_REGEXP , options: ['regexp ' => '/\ADifferentFlag/ ' ])]
119
119
string $ regexp ,
120
120
) {
121
121
}
You can’t perform that action at this time.
0 commit comments