Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / hal / src / LinkManager / LinkManagerInterface.php
1 <?php
2
3 namespace Drupal\hal\LinkManager;
4
5 /**
6  * Interface implemented by link managers.
7  *
8  * There are no explicit methods on the manager interface. Instead link managers
9  * broker the interactions of the different components, and therefore must
10  * implement each component interface, which is enforced by this interface
11  * extending all of the component ones.
12  *
13  * While a link manager may directly implement these interface methods with
14  * custom logic, it is expected to be more common for plugin managers to proxy
15  * the method invocations to the respective components.
16  */
17 interface LinkManagerInterface extends TypeLinkManagerInterface, RelationLinkManagerInterface {
18 }