UuidInterface.php

Definition of Drupal\Component\Uuid\UuidInterface.

Namespace

Drupal\Component\Uuid

File

drupal/core/lib/Drupal/Component/Uuid/UuidInterface.php
View source
<?php

/**
 * @file
 * Definition of Drupal\Component\Uuid\UuidInterface.
 */
namespace Drupal\Component\Uuid;


/**
 * Interface that defines a UUID backend.
 */
interface UuidInterface {

  /**
   * Generates a Universally Unique IDentifier (UUID).
   *
   * @return
   *   A 32 byte integer represented as a hex string formatted with 4 hypens.
   */
  public function generate();

}

Interfaces

Namesort descending Description
UuidInterface Interface that defines a UUID backend.