Pecl.php in Service Container 7.2
Same filename and directory in other branches
Contains \Drupal\Component\Uuid\Pecl.
Namespace
Drupal\Component\UuidFile
lib/Drupal/Component/Uuid/Pecl.phpView source
<?php
/**
* @file
* Contains \Drupal\Component\Uuid\Pecl.
*/
namespace Drupal\Component\Uuid;
/**
* UUID implementation using the PECL extension.
*/
class Pecl implements UuidInterface {
/**
* {@inheritdoc}
*/
public function generate() {
return uuid_create(UUID_TYPE_DEFAULT);
}
}