You are here

interface HumanNameParserInterface in Bibliography & Citation 2.0.x

Same name and namespace in other branches
  1. 8 src/HumanNameParserInterface.php \Drupal\bibcite\HumanNameParserInterface

Define an interface for HumanNameParser service.

Hierarchy

Expanded class hierarchy of HumanNameParserInterface

All classes that implement HumanNameParserInterface

File

src/HumanNameParserInterface.php, line 8

Namespace

Drupal\bibcite
View 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

Namesort descending Modifiers Type Description Overrides
HumanNameParserInterface::parse public function Parse the name into its constituent parts. 1