This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/core/lib/Drupal/Component/Uuid/UuidInterface.php

23 lines
382 B
PHP

<?php
/**
* @file
* Contains \Drupal\Component\Uuid\UuidInterface.
*/
namespace Drupal\Component\Uuid;
/**
* Interface that defines a UUID backend.
*/
interface UuidInterface {
/**
* Generates a Universally Unique IDentifier (UUID).
*
* @return
* A 16 byte integer represented as a hex string formatted with 4 hyphens.
*/
public function generate();
}