UuidInterface.php in Drupal 8
Same filename and directory in other branches
Namespace
Drupal\Component\UuidFile
core/lib/Drupal/Component/Uuid/UuidInterface.phpView source
<?php
namespace Drupal\Component\Uuid;
/**
* Interface for generating UUIDs.
*/
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();
}
Interfaces
Name | Description |
---|---|
UuidInterface | Interface for generating UUIDs. |