Loads a mapping file with the given name and returns a map from class/entity names to their corresponding file driver elements.
string $file The mapping file to load.:
array
Overrides FileDriver::loadMappingFile
protected function loadMappingFile($file) {
$metadata = $this->metadata;
include $file;
return array(
$metadata
->getName() => $metadata,
);
}