Pecl.php 246 B

1234567891011121314151617
  1. <?php
  2. namespace Drupal\Component\Uuid;
  3. /**
  4. * Generates a UUID using the PECL extension.
  5. */
  6. class Pecl implements UuidInterface {
  7. /**
  8. * {@inheritdoc}
  9. */
  10. public function generate() {
  11. return uuid_create(UUID_TYPE_DEFAULT);
  12. }
  13. }