Skip to content

Commit 58902a8

Browse files
committed
ran php-cs-fixer on prior ChainLoader related changes
1 parent 11aa6c6 commit 58902a8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Exception/Binary/Loader/ChainNotLoadableException.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function __construct(string $path, ChainAttemptNotLoadableException ...$e
2121
private static function compileExceptionMessage(string $path, ChainAttemptNotLoadableException ...$exceptions): string
2222
{
2323
return vsprintf('Source image not resolvable "%s" using "%s" %d loaders (internal exceptions: %s).', [
24-
$path, self::compileLoaderConfigMaps(...$exceptions), \count($exceptions), self::compileLoaderErrorsList(...$exceptions)
24+
$path, self::compileLoaderConfigMaps(...$exceptions), \count($exceptions), self::compileLoaderErrorsList(...$exceptions),
2525
]);
2626
}
2727

@@ -39,7 +39,8 @@ private static function compileLoaderErrorsList(ChainAttemptNotLoadableException
3939
}, ...$exceptions);
4040
}
4141

42-
private static function implodeArrayMappedExceptions(\Closure $listMapper, ChainAttemptNotLoadableException ...$exceptions): string {
42+
private static function implodeArrayMappedExceptions(\Closure $listMapper, ChainAttemptNotLoadableException ...$exceptions): string
43+
{
4344
return implode(', ', array_map($listMapper, $exceptions));
4445
}
4546
}

0 commit comments

Comments
 (0)