mautic / app /bundles /CoreBundle /Helper /RandomHelper /RandomHelperInterface.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
raw
history blame contribute delete
347 Bytes
<?php
namespace Mautic\CoreBundle\Helper\RandomHelper;
/**
* Interface RandomHelperIdentifier.
*/
interface RandomHelperInterface
{
/**
* Generate random string.
*
* @param int $length
* @param string $charlist
*
* @return string
*/
public function generate($length = 10, $charlist = '0-9a-z');
}