14 lines
214 B
PHP
14 lines
214 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Lucent\Schema\Validator;
|
||
|
|
|
||
|
|
interface ValidatorInterface
|
||
|
|
{
|
||
|
|
|
||
|
|
public function validate(): ValidatorInterface;
|
||
|
|
|
||
|
|
public function value(): ValidatorError;
|
||
|
|
|
||
|
|
public function hasError(): bool;
|
||
|
|
}
|