1 | <?php |
||
10 | class CallableStringValidator implements StringValidatorInterface { |
||
11 | |||
12 | /** |
||
13 | * @var callable |
||
14 | */ |
||
15 | private $callable; |
||
16 | |||
17 | |||
18 | 2 | public function __construct(callable $callable) { |
|
21 | |||
22 | |||
23 | 2 | public function validate(StringDataElementInterface $element) : ValidationResultInterface { |
|
27 | |||
28 | } |