Whether the class with the specified name should have its metadata loaded. This is only the case if it is either mapped as an Entity or a MappedSuperclass.
string $className:
boolean
Overrides MappingDriver::isTransient
public function isTransient($className) {
if ($this->classCache === null) {
$this
->initialize();
}
if (isset($this->classCache[$className])) {
return false;
}
return !$this->locator
->fileExists($className);
}