Skip to content

Commit

Permalink
Merge pull request #4 from steffenr/master
Browse files Browse the repository at this point in the history
after updating symfony/yaml we have to load file contents to process …
  • Loading branch information
derhasi committed Dec 7, 2017
2 parents a417389 + c6b8929 commit 628ff27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Config/Loader/YamlLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class YamlLoader extends FileLoader
*/
public function load($resource, $type = null)
{
return Yaml::parse($resource);
return Yaml::parse(file_get_contents($resource));
}

/**
Expand Down

0 comments on commit 628ff27

Please sign in to comment.