Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Invalid
-
Affects Version/s: 1.0.0BETA2
-
Fix Version/s: None
-
Component/s: Mapping Drivers
-
Labels:None
-
Environment:Ubunuto, Zend Server, MongoDB 1.6.3
Description
In the YamlDriver.php the namespace is incorrect I pressume. It should be \Symfony\Components\Yaml\Yaml. Its missing a 's' in Component
Current in Master :
protected function loadMappingFile($file)
{
return \Symfony\Component\Yaml\Yaml::load($file);
}
Desired Outcome
protected function loadMappingFile($file)
{
return \Symfony\Components\Yaml\Yaml::load($file);
}
Hi, no they renamed it to Component. No "s". Do you have an old version of the YAML component maybe?