
| Current Path : /var/www/html/rocksensor3/web/core/lib/Drupal/Core/Password/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor3/web/core/lib/Drupal/Core/Password/PasswordGeneratorInterface.php |
<?php
namespace Drupal\Core\Password;
/**
* Interface for generating passwords.
*/
interface PasswordGeneratorInterface {
/**
* Generates a password.
*
* @param int $length
* (optional) The length of the password.
*
* @return string
* The password.
*/
public function generate(int $length = 10): string;
}