File size: 347 Bytes
d2897cd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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');
}