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.
1 parent a2b80cd commit 5f762acCopy full SHA for 5f762ac
Loader/YamlFileLoader.php
@@ -66,7 +66,7 @@ public function load($file, $type = null)
66
try {
67
$parsedConfig = $this->yamlParser->parseFile($path);
68
} catch (ParseException $e) {
69
- 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);
70
} finally {
71
restore_error_handler();
72
}
0 commit comments