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.
2 parents ac669f7 + 8eab633 commit f2ab215Copy full SHA for f2ab215
src/Runner/Filter/NameFilterIterator.php
@@ -120,11 +120,14 @@ private function setFilter(string $filter): void
120
121
// Escape delimiters in regular expression. Do NOT use preg_quote,
122
// to keep magic characters.
123
- $filter = sprintf('/%s/i', str_replace(
124
- '/',
125
- '\\/',
126
- $filter
127
- ));
+ $filter = sprintf(
+ '/%s/i',
+ str_replace(
+ '/',
+ '\\/',
128
+ $filter
129
+ )
130
+ );
131
}
132
133
$this->filter = $filter;
0 commit comments