fuc-new/vendor/illuminate/contracts/Validation/UncompromisedVerifier.php
hellcat 1fe8673f62 1
2025-10-01 13:34:29 +08:00

15 lines
267 B
PHP
Executable File

<?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);
}