b0y-101 Mini Shell


Current Path : E:/www/raff/wp-content/plugins/wpforms/libs/bjeavons/zxcvbn-php/src/Matchers/
File Upload :
Current File : E:/www/raff/wp-content/plugins/wpforms/libs/bjeavons/zxcvbn-php/src/Matchers/MatchInterface.php

<?php

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 Array of Match objects
     */
    public static function match($password, array $userInputs = []);

    /**
     * @return integer
     */
    public function getGuesses();

    /**
     * @return float
     */
    public function getGuessesLog10();
}

Copyright © 2019 by b0y-101