Mercurial > hg > cmmr2012-drupal-site
view core/modules/hal/src/LinkManager/LinkManagerInterface.php @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | c75dbcec494b |
children |
line wrap: on
line source
<?php namespace Drupal\hal\LinkManager; /** * Interface implemented by link managers. * * There are no explicit methods on the manager interface. Instead link managers * broker the interactions of the different components, and therefore must * implement each component interface, which is enforced by this interface * extending all of the component ones. * * While a link manager may directly implement these interface methods with * custom logic, it is expected to be more common for plugin managers to proxy * the method invocations to the respective components. */ interface LinkManagerInterface extends TypeLinkManagerInterface, RelationLinkManagerInterface { }