UuidInterface.php 308 B

123456789101112131415161718
  1. <?php
  2. namespace Drupal\Component\Uuid;
  3. /**
  4. * Interface for generating UUIDs.
  5. */
  6. interface UuidInterface {
  7. /**
  8. * Generates a Universally Unique IDentifier (UUID).
  9. *
  10. * @return
  11. * A 16 byte integer represented as a hex string formatted with 4 hyphens.
  12. */
  13. public function generate();
  14. }