1 | <?php namespace Limoncello\Validation\Validator; |
||
26 | trait ValidatorTrait |
||
27 | { |
||
28 | /** |
||
29 | * @param RuleInterface $rule |
||
30 | * @param mixed $input |
||
31 | * @param ErrorAggregatorInterface $aggregator |
||
32 | * |
||
33 | * @return Generator |
||
34 | */ |
||
35 | 33 | protected static function validateData(RuleInterface $rule, $input, ErrorAggregatorInterface $aggregator) |
|
47 | } |
||
48 |