mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-04-03 22:03:33 +03:00
Merge pull request #69 from evillemez/jms_fix
fixed JmsMetadataParser::supports
This commit is contained in:
commit
b085338166
1 changed files with 6 additions and 3 deletions
|
@ -32,10 +32,13 @@ class JmsMetadataParser implements ParserInterface
|
|||
*/
|
||||
public function supports($input)
|
||||
{
|
||||
if ($meta = $this->factory->getMetadataForClass($input)) {
|
||||
return true;
|
||||
try {
|
||||
if ($meta = $this->factory->getMetadataForClass($input)) {
|
||||
return true;
|
||||
}
|
||||
} catch (\ReflectionException $e) {
|
||||
}
|
||||
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue