blob: d4bd597d1a667a7124bebb16aada363eb00ae438 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Validation;
4
5interface UncompromisedVerifier
6{
7 /**
8 * Verify that the given data has not been compromised in data leaks.
9 *
10 * @param array $data
11 * @return bool
12 */
13 public function verify($data);
14}