Files
lucent-laravel/src/Schema/Validator/ValidatorInterface.php
T

14 lines
214 B
PHP
Raw Normal View History

2023-10-02 23:10:49 +03:00
<?php
namespace Lucent\Schema\Validator;
interface ValidatorInterface
{
public function validate(): ValidatorInterface;
public function value(): ValidatorError;
public function hasError(): bool;
}