We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16cb23a commit 1325277Copy full SHA for 1325277
src/Doctrine/Mapping/MappingDriverChain.php
@@ -54,11 +54,15 @@ public function getAllClassNames()
54
public function isTransient($className)
55
{
56
foreach ($this->drivers as $driver) {
57
- if ($driver->isTransient($className)) {
58
- continue;
59
- }
+ try {
+ if ($driver->isTransient($className)) {
+ continue;
60
+ }
61
- return false;
62
+ return false;
63
+ } catch (MappingException | AnnotationException $e) {
64
+ // pass
65
66
}
67
68
return true;
0 commit comments