UncompromisedVerifier.php
TLDR
This file is an interface file that belongs to the Illuminate\Contracts\Validation namespace. It declares the UncompromisedVerifier interface, which contains one method called verify
. The verify
method is used to verify that the given data has not been compromised in data leaks.
Methods
verify
This method is used to verify that the given data has not been compromised in data leaks. It takes an array of data as input and returns a boolean value indicating whether the data has been compromised or not.
END
<?php
namespace Illuminate\Contracts\Validation;
interface UncompromisedVerifier
{
/**
* Verify that the given data has not been compromised in data leaks.
*
* @param array $data
* @return bool
*/
public function verify($data);
}