Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / hal / src / LinkManager / ConfigurableLinkManagerInterface.php
1 <?php
2
3 namespace Drupal\hal\LinkManager;
4
5 /**
6  * Defines an interface for a link manager with a configurable domain.
7  */
8 interface ConfigurableLinkManagerInterface {
9
10   /**
11    * Sets the link domain used in constructing link URIs.
12    *
13    * @param string $domain
14    *   The link domain to use for constructing link URIs.
15    *
16    * @return $this
17    */
18   public function setLinkDomain($domain);
19
20 }