Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0 / 0 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\rest\LinkManager\ConfigurableLinkManagerInterface. | |
*/ | |
namespace Drupal\rest\LinkManager; | |
/** | |
* Defines an interface for a link manager with a configurable domain. | |
*/ | |
interface ConfigurableLinkManagerInterface { | |
/** | |
* Sets the link domain used in constructing link URIs. | |
* | |
* @param string $domain | |
* The link domain to use for constructing link URIs. | |
* | |
* @return $this | |
*/ | |
public function setLinkDomain($domain); | |
} |