Current path: home/webdevt/www/schtroumpf.fr/vendor/bjeavons/zxcvbn-php/src/Matchers/
?? Go up: /home/webdevt/www/schtroumpf.fr/vendor/bjeavons/zxcvbn-php/src
<?php
declare(strict_types=1);
namespace ZxcvbnPhp\Matchers;
interface MatchInterface
{
/**
* Match this password.
*
* @param string $password Password to check for match
* @param array $userInputs Array of values related to the user (optional)
* @code array('Alice Smith')
* @endcode
*
* @return array|BaseMatch[] Array of Match objects
*/
public static function match(string $password, array $userInputs = []): array;
public function getGuesses(): float;
public function getGuessesLog10(): float;
}