1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

#1200 - removing Yaml::parse() deprecation errors by passing in file contents instead of file paths

This commit is contained in:
Marco Pivetta 2014-12-04 13:37:59 +01:00
parent 30bf192cf4
commit d3b1bf571b
2 changed files with 3 additions and 3 deletions

View file

@ -788,6 +788,6 @@ class YamlDriver extends FileDriver
*/ */
protected function loadMappingFile($file) protected function loadMappingFile($file)
{ {
return Yaml::parse($file); return Yaml::parse(file_get_contents($file));
} }
} }

View file

@ -77,10 +77,10 @@ class ConvertDoctrine1Schema
if (is_dir($path)) { if (is_dir($path)) {
$files = glob($path . '/*.yml'); $files = glob($path . '/*.yml');
foreach ($files as $file) { foreach ($files as $file) {
$schema = array_merge($schema, (array) Yaml::parse($file)); $schema = array_merge($schema, (array) Yaml::parse(file_get_contents($file)));
} }
} else { } else {
$schema = array_merge($schema, (array) Yaml::parse($path)); $schema = array_merge($schema, (array) Yaml::parse(file_get_contents($file)));
} }
} }