diff --git a/Parser/JmsMetadataParser.php b/Parser/JmsMetadataParser.php index b2c3bac..8af8432 100644 --- a/Parser/JmsMetadataParser.php +++ b/Parser/JmsMetadataParser.php @@ -184,6 +184,14 @@ class JmsMetadataParser implements ParserInterface ); } + // we can use type property also for custom handlers, then we don't have here real class name + if (!class_exists($type)) { + return array( + 'normalized' => sprintf("custom handler result for (%s)", $type), + 'class' => null + ); + } + // if we got this far, it's a general class name $exp = explode("\\", $type);