Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a new method to use a filter before extracting the metadata #266

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -115,6 +115,29 @@ public function getAllMetadata()
return $metadata;
}

/**
* Forces the factory to load the metadata of all classes known to the underlying
* mapping driver and where the name looks like one of the pattern given.
*
* @param array $filter
* @return array The ClassMetadat instances of all mapped classes.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typo ClassMetadat -> ClassMetadata

*/
function getAllFilteredMetadata(array $filter)
{
if ( ! $this->initialized) {
$this->initialize();
}

$driver = $this->getDriver();
$metadata = array();
foreach ($driver->getFilteredClassNames($filter) as $className) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this method is not part of the Driver interface (and cannot be added as it would be a BC break)

$metadata[] = $this->getMetadataFor($className);
}

return $metadata;
}


/**
* Lazy initialization of this stuff, especially the metadata driver,
* since these are not needed at all when a metadata cache is active.
Expand Down