Com.php 387 B

1234567891011121314151617181920
  1. <?php
  2. namespace Drupal\Component\Uuid;
  3. /**
  4. * Generates a UUID using the Windows internal GUID extension.
  5. *
  6. * @see http://php.net/com_create_guid
  7. */
  8. class Com implements UuidInterface {
  9. /**
  10. * {@inheritdoc}
  11. */
  12. public function generate() {
  13. // Remove {} wrapper and make lower case to keep result consistent.
  14. return strtolower(trim(com_create_guid(), '{}'));
  15. }
  16. }