missing "YAML" in the exception message.

This commit is contained in:
David Badura 2015-09-10 09:43:17 +02:00
parent 37827a2fef
commit b95b5e217f

View File

@ -121,7 +121,7 @@ class YamlFileLoader extends FileLoader
try { try {
$classes = $this->yamlParser->parse(file_get_contents($path)); $classes = $this->yamlParser->parse(file_get_contents($path));
} catch (ParseException $e) { } catch (ParseException $e) {
throw new \InvalidArgumentException(sprintf('The file "%s" does not contain valid.', $path), 0, $e); throw new \InvalidArgumentException(sprintf('The file "%s" does not contain valid YAML.', $path), 0, $e);
} }
// empty file // empty file