Skip to content

Commit 8368669

Browse files
committed
Fix newline
1 parent e5f794d commit 8368669

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/DependencyInjection/Loader/XmlFileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ private function parseFileToDOM(string $file): \DOMDocument
429429
}
430430
}
431431
if ($errors) {
432-
throw new InvalidArgumentException(sprintf('Unable to parse file "%s": ', $file).implode("/n", $errors), $e->getCode(), $e);
432+
throw new InvalidArgumentException(sprintf('Unable to parse file "%s": ', $file).implode("\n", $errors), $e->getCode(), $e);
433433
}
434434
}
435435

0 commit comments

Comments
 (0)