You are here

public function IsbnToolsService::convertIsbn10to13 in ISBN Field 8

File

src/IsbnToolsService.php, line 32

Class

IsbnToolsService

Namespace

Drupal\isbn

Code

public function convertIsbn10to13($number) {
  try {
    return $this->isbn_tools
      ->convertIsbn10to13($number);
  } catch (InvalidIsbnException $e) {
  }
}