mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-19 14:27:14 +01:00
9e103260ec
2f3e9be0ae
[DX] Test BetterNodeFinder with Laravel container (#4106)
15 lines
286 B
PHP
15 lines
286 B
PHP
<?php
|
|
|
|
namespace RectorPrefix202306\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);
|
|
}
|