blob: d4bd597d1a667a7124bebb16aada363eb00ae438 [file] [log] [blame]
<?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);
}