squirrelphp/strings

View on GitHub
src/RandomStringGeneratorInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Squirrel\Strings;

/**
 * Interface for generating a random string
 */
interface RandomStringGeneratorInterface
{
    /**
     * Generates a random string with the given length $length
     */
    public function generate(int $length): string;
}