. */ declare(strict_types=1); namespace FireflyIII\Services\Password; /** * Interface Verifier. */ interface Verifier { /** * Verify the given password against (some) service. * * @param string $password * * @return bool */ public function validPassword(string $password): bool; }