We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 240618e commit 030c54bCopy full SHA for 030c54b
tests/system/Filters/FiltersTest.php
@@ -215,15 +215,23 @@ public static function provideProcessMethodProcessGlobalsWithExcept(): iterable
215
['admin/*'],
216
],
217
[
218
- [],
+ ['admin/*', 'foo/*'],
219
+ ],
220
+ [
221
+ ['*'],
222
223
224
+ 'admin/*',
225
226
];
227
}
228
229
/**
230
* @dataProvider provideProcessMethodProcessGlobalsWithExcept
231
+ *
232
+ * @param array|string $except
233
*/
- public function testProcessMethodProcessGlobalsWithExcept(array $except): void
234
+ public function testProcessMethodProcessGlobalsWithExcept($except): void
235
{
236
$_SERVER['REQUEST_METHOD'] = 'GET';
237
0 commit comments