Skip to content

Commit 54e5507

Browse files
committed
Ran php-cs-fixer
1 parent f1dbf98 commit 54e5507

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PHP/ComposerAutoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ private static function escapeArgument(?string $argument): string
3838
if (!preg_match('/[\/()%!^"<>&|\s]/', $argument)) {
3939
return $argument;
4040
}
41-
$argument = preg_replace('/(\\\\+)$/', '$1$1', $argument);
41+
$argument = preg_replace('/(\\\+)$/', '$1$1', $argument);
4242

4343
return '"'.str_replace(['"', '^', '%', '!', "\n"], ['""', '"^^"', '"^%"', '"^!"', '!LF!'], $argument).'"';
4444
}

0 commit comments

Comments
 (0)