1 | <?php |
||
10 | class ChainResolver implements RelationProviderResolverInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var RelationProviderResolverInterface[] |
||
14 | */ |
||
15 | private $resolvers; |
||
16 | |||
17 | public function __construct(array $resolvers) |
||
21 | |||
22 | public function addResolver(RelationProviderResolverInterface $resolver) |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | public function getRelationProvider(RelationProviderConfiguration $configuration, $object) |
||
43 | } |
||
44 |