From 55b1c5387c44b5fd9ca3dc626890642511dd7bf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Sat, 13 Apr 2024 05:43:37 +0200 Subject: [PATCH] fix combination calculation docblock for random str generator --- src/UniqueIdentifierGenerators/RandomStringGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UniqueIdentifierGenerators/RandomStringGenerator.php b/src/UniqueIdentifierGenerators/RandomStringGenerator.php index 238f6a3c..fee8bd69 100644 --- a/src/UniqueIdentifierGenerators/RandomStringGenerator.php +++ b/src/UniqueIdentifierGenerators/RandomStringGenerator.php @@ -12,7 +12,7 @@ use Stancl\Tenancy\Contracts\UniqueIdentifierGenerator; * Generates a cryptographically secure random string for the tenant key. * * To customize the string length, change the static `$length` property. - * The number of unique combinations is 36 ^ string length. + * The number of unique combinations is 61 ^ string length. */ class RandomStringGenerator implements UniqueIdentifierGenerator {