interface HumanNameParserInterface in Bibliography & Citation 2.0.x
Same name and namespace in other branches
- 8 src/HumanNameParserInterface.php \Drupal\bibcite\HumanNameParserInterface
Define an interface for HumanNameParser service.
Hierarchy
- interface \Drupal\bibcite\HumanNameParserInterface
Expanded class hierarchy of HumanNameParserInterface
All classes that implement HumanNameParserInterface
File
- src/
HumanNameParserInterface.php, line 8
Namespace
Drupal\bibciteView source
interface HumanNameParserInterface {
/**
* Parse the name into its constituent parts.
*
* @param string $name
* Human name string.
*
* @return array
* Parsed name parts.
*/
public function parse($name);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
HumanNameParserInterface:: |
public | function | Parse the name into its constituent parts. | 1 |