Files
php-uuid/src/RandomGeneratorInterface.php
T

14 lines
185 B
PHP

<?php
namespace Rhumsaa\Uuid;
interface RandomGeneratorInterface
{
/**
* @param integer $length
*
* @return string
*/
public function generate($length);
}