SynonymsBehaviorInterface.php in Synonyms 8
Namespace
Drupal\synonyms\SynonymsService\BehaviorFile
src/SynonymsService/Behavior/SynonymsBehaviorInterface.phpView source
<?php
namespace Drupal\synonyms\SynonymsService\Behavior;
/**
* Interface of a synonyms behavior. All behaviors must implement it.
*/
interface SynonymsBehaviorInterface {
/**
* Get human readable title of this behavior.
*
* @return string
* The return title
*/
public function getTitle();
}
Interfaces
Name | Description |
---|---|
SynonymsBehaviorInterface | Interface of a synonyms behavior. All behaviors must implement it. |