From 8f302cfeded8c34d983aa16a74ac2531caa3bc74 Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Sun, 10 May 2020 19:31:19 +0000 Subject: [PATCH] password : domci git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@5982 bf3deb0d-5f1a-0410-827f-c0cc1f45334c --- password.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/password.php b/password.php index 0c57065..bf35ae3 100644 --- a/password.php +++ b/password.php @@ -156,7 +156,7 @@ class password /** Create a random password with $nbChars chars, ASCII chars (with special * chars). * A maximum of 20% for special chars in the size - * @param integer|null $nbChar The number of chars (12 by default) + * @param integer|null $nbChars The number of chars (12 by default) * @return The random password */ static public function generateASCII ($nbChars = 12) @@ -185,7 +185,7 @@ class password /** Create a random password with $nbChars chars, Alphanumericals chars * (without special chars) - * @param integer|null $nbChar The number of chars (12 by default) + * @param integer|null $nbChars The number of chars (12 by default) * @return The random password */ static public function generateAlphanum ($nbChars = 12) @@ -210,7 +210,7 @@ class password /** Create a random password with $nbChars chars, Alphabeticals chars * (without special chars, neither numbers) - * @param integer|null $nbChar The number of chars (12 by default) + * @param integer|null $nbChars The number of chars (12 by default) * @return The random password */ static public function generateAlphabetical ($nbChars = 12)