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 748742c + 5f762ac commit 399f377Copy full SHA for 399f377
Loader/YamlFileLoader.php
@@ -62,7 +62,7 @@ public function load($file, $type = null)
62
try {
63
$parsedConfig = $this->yamlParser->parseFile($path, Yaml::PARSE_CONSTANT);
64
} catch (ParseException $e) {
65
- throw new \InvalidArgumentException(sprintf('The file "%s" does not contain valid YAML', $path).': '.$e->getMessage(), 0, $e);
+ throw new \InvalidArgumentException(sprintf('The file "%s" does not contain valid YAML: ', $path).$e->getMessage(), 0, $e);
66
}
67
68
$collection = new RouteCollection();
0 commit comments