1 | <?php |
||
15 | class RawValueValidator implements UIValidatorInterface |
||
16 | { |
||
17 | use BooleanValidatorTrait; |
||
18 | use IntegerValidatorTrait; |
||
19 | use FloatValidatorTrait; |
||
20 | use StringValidatorTrait; |
||
21 | use ArrayValidatorTrait; |
||
22 | use DateValidatorTrait; |
||
23 | |||
24 | /** @var UIValidationEngine */ |
||
25 | protected $validationEngine; |
||
26 | |||
27 | public function __construct(UIValidationEngine $validationEngine) |
||
31 | |||
32 | /** |
||
33 | * @inheritdoc |
||
34 | */ |
||
35 | public function createUIValidationException(string $message, string $propertyPath = null): UIValidationException |
||
39 | } |
||
40 |