1 | <?php declare(strict_types = 1); |
||
16 | class AnnotationResolver implements ResolverInterface |
||
17 | { |
||
18 | /** @var AnnotationResolverInterface */ |
||
19 | protected $classResolver; |
||
20 | |||
21 | /** @var AnnotationResolverInterface */ |
||
22 | protected $propertyResolver; |
||
23 | |||
24 | /** @var AnnotationResolverInterface */ |
||
25 | protected $methodResolver; |
||
26 | |||
27 | /** |
||
28 | * AnnotationResolver constructor. |
||
29 | * |
||
30 | * @param AnnotationResolverInterface $classResolver |
||
31 | * @param AnnotationResolverInterface $propertyResolver |
||
32 | * @param AnnotationResolverInterface $methodResolver |
||
33 | */ |
||
34 | 11 | public function __construct(AnnotationResolverInterface $classResolver, AnnotationResolverInterface $propertyResolver, AnnotationResolverInterface $methodResolver) |
|
40 | |||
41 | /** |
||
42 | * {@inheritDoc} |
||
43 | */ |
||
44 | 11 | public function resolve($classData, string $identifier = null) : ClassMetadata |
|
60 | } |
||
61 |