Pecl.php

Definition of Drupal\Component\Uuid\Pecl.

Namespace

Drupal\Component\Uuid

File

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

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


/**
 * UUID implementation using the PECL extension.
 */
class Pecl implements UuidInterface {

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

}

Classes

Namesort descending Description
Pecl UUID implementation using the PECL extension.