HumanNameParserInterface.php in Bibliography & Citation 2.0.x
Same filename and directory in other branches
Namespace
Drupal\bibciteFile
src/HumanNameParserInterface.phpView source
<?php
namespace Drupal\bibcite;
/**
* Define an interface for HumanNameParser service.
*/
interface HumanNameParserInterface {
/**
* Parse the name into its constituent parts.
*
* @param string $name
* Human name string.
*
* @return array
* Parsed name parts.
*/
public function parse($name);
}
Interfaces
Name | Description |
---|---|
HumanNameParserInterface | Define an interface for HumanNameParser service. |