You are here

HumanNameParserInterface.php in Bibliography & Citation 2.0.x

Same filename and directory in other branches
  1. 8 src/HumanNameParserInterface.php

Namespace

Drupal\bibcite

File

src/HumanNameParserInterface.php
View 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

Namesort descending Description
HumanNameParserInterface Define an interface for HumanNameParser service.