view core/lib/Drupal/Component/Uuid/Com.php @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents 129ea1e6d783
children
line wrap: on
line source
<?php

namespace Drupal\Component\Uuid;

/**
 * Generates a UUID using the Windows internal GUID extension.
 *
 * @see http://php.net/com_create_guid
 */
class Com implements UuidInterface {

  /**
   * {@inheritdoc}
   */
  public function generate() {
    // Remove {} wrapper and make lower case to keep result consistent.
    return strtolower(trim(com_create_guid(), '{}'));
  }

}