class Pecl

UUID implementation using the PECL extension.

Hierarchy

Expanded class hierarchy of Pecl

File

drupal/core/lib/Drupal/Component/Uuid/Pecl.php, line 13
Definition of Drupal\Component\Uuid\Pecl.

Namespace

Drupal\Component\Uuid
View source
class Pecl implements UuidInterface {

  /**
   * Implements Drupal\Component\Uuid\UuidInterface::generate().
   */
  public function generate() {
    return uuid_create(UUID_TYPE_DEFAULT);
  }

}

Members