Upgraded drupal core with security updates
[yaffs-website] / web / core / lib / Drupal / Component / Uuid / Pecl.php
1 <?php
2
3 namespace Drupal\Component\Uuid;
4
5 /**
6  * Generates a UUID using the PECL extension.
7  */
8 class Pecl implements UuidInterface {
9
10   /**
11    * {@inheritdoc}
12    */
13   public function generate() {
14     return uuid_create(UUID_TYPE_DEFAULT);
15   }
16
17 }