Mercurial > hg > isophonics-drupal-site
comparison core/modules/serialization/src/EntityResolver/ChainEntityResolverInterface.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4c8ae668cc8c |
---|---|
1 <?php | |
2 | |
3 namespace Drupal\serialization\EntityResolver; | |
4 | |
5 /** | |
6 * An interface for delegating a entity resolution to a chain of resolvers. | |
7 */ | |
8 interface ChainEntityResolverInterface extends EntityResolverInterface { | |
9 | |
10 /** | |
11 * Adds an entity resolver. | |
12 * | |
13 * @param \Drupal\serialization\EntityResolver\EntityResolverInterface $resolver | |
14 * The entity resolver to add. | |
15 */ | |
16 public function addResolver(EntityResolverInterface $resolver); | |
17 | |
18 } |