mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-14 15:56:48 +03:00
14 lines
185 B
PHP
14 lines
185 B
PHP
<?php
|
|
|
|
namespace Rhumsaa\Uuid;
|
|
|
|
interface RandomGeneratorInterface
|
|
{
|
|
/**
|
|
* @param integer $length
|
|
*
|
|
* @return string
|
|
*/
|
|
public function generate($length);
|
|
}
|