-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathServerSideValidatorInterface.php
61 lines (52 loc) · 1.75 KB
/
ServerSideValidatorInterface.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
declare(strict_types=1);
/*
* UserFrosting Framework (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/framework
* @copyright Copyright (c) 2013-2024 Alexander Weissman, Louis Charette, Jordan Mele
* @license https://github.com/userfrosting/framework/blob/master/LICENSE.md (MIT License)
*/
namespace UserFrosting\Fortress;
use UserFrosting\Fortress\RequestSchema\RequestSchemaInterface;
use UserFrosting\I18n\Translator;
/**
* Loads validation rules from a schema and validates a target array of data.
*
* @deprecated 5.1 Use `\UserFrosting\Fortress\Validator\ServerSideValidatorInterface` instead.
*/
interface ServerSideValidatorInterface
{
/**
* Set the schema for this validator, as a valid RequestSchemaInterface object.
*
* @param RequestSchemaInterface $schema A RequestSchemaInterface object, containing the validation rules.
*/
public function setSchema(RequestSchemaInterface $schema): void;
/**
* Set the translator for this validator, as a valid Translator object.
*
* @param Translator $translator A Translator to be used to translate message ids found in the schema.
*/
public function setTranslator(Translator $translator): void;
/**
* Validate the specified data against the schema rules.
*
* @param mixed[] $data An array of data, mapping field names to field values.
*
* @return bool True if the data was successfully validated, false otherwise.
*/
public function validate(array $data): bool;
/**
* Get array of fields and data.
*
* @return mixed[]
*/
public function data();
/**
* Get array of error messages.
*
* @return mixed[]|bool
*/
public function errors();
}