Skip to content

Commit aca3647

Browse files
committed
Fix phpcs linting issue
1 parent db9dd53 commit aca3647

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Replace/NamespaceReplacer.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ public function replace($contents)
1212
$searchNamespace = preg_quote($this->autoloader->getSearchNamespace(), '/');
1313
$dependencyNamespace = preg_quote($this->dep_namespace, '/');
1414

15-
return preg_replace_callback("
15+
return preg_replace_callback(
16+
"
1617
/ # Start the pattern
1718
([^a-zA-Z0-9_\x7f-\xff]) # Match the non-class character before the namespace
1819
( # Start the namespace matcher

0 commit comments

Comments
 (0)