mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 07:45:45 +01:00
There are a few "problems" with the current engine: - Allowing each rule to execute assert() and check() means duplication in some cases. - Because we use exceptions to assert/check, we can only invert a validation (with Not) if there are errors. That means that we have limited granularity control. - There is a lot of logic in the exceptions. That means that even after it throws an exception, something could still happen. We're stable on that front, but I want to simplify them. Besides, debugging exception code is painful because the stack trace does not go beyond the exception. Apart from that, there are many limitations with templating, and working that out in the current implementation makes it much harder. These changes will improve the library in many aspects, but they will also change the behavior and break backward compatibility. However, that's a price I'm willing to pay for the improvements we'll have. Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
33 lines
699 B
PHP
33 lines
699 B
PHP
<?php
|
|
|
|
/*
|
|
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Respect\Validation;
|
|
|
|
use Respect\Validation\Exceptions\ValidationException;
|
|
|
|
interface Validatable extends Rule
|
|
{
|
|
public function assert(mixed $input): void;
|
|
|
|
public function check(mixed $input): void;
|
|
|
|
/**
|
|
* @param mixed[] $extraParameters
|
|
*/
|
|
public function reportError(mixed $input, array $extraParameters = []): ValidationException;
|
|
|
|
public function getTemplate(): ?string;
|
|
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function getParams(): array;
|
|
|
|
public function validate(mixed $input): bool;
|
|
}
|