xref: /plugin/struct/_test/mock/ValueValidator.php (revision 0549dcc5bc88d4f9d923acdd09931d8d51be7097)
1b6c8d1e9SAndreas Gohr<?php
2b6c8d1e9SAndreas Gohr
3b6c8d1e9SAndreas Gohrnamespace dokuwiki\plugin\struct\test\mock;
4b6c8d1e9SAndreas Gohr
5*0549dcc5SAndreas Gohruse dokuwiki\plugin\struct\meta;
6b6c8d1e9SAndreas Gohruse dokuwiki\plugin\struct\types\AbstractBaseType;
7b6c8d1e9SAndreas Gohr
8*0549dcc5SAndreas Gohrclass ValueValidator extends meta\ValueValidator
9*0549dcc5SAndreas Gohr{
10*0549dcc5SAndreas Gohr    public function validateField(AbstractBaseType $type, $label, &$data)
11*0549dcc5SAndreas Gohr    {
12b6c8d1e9SAndreas Gohr        return parent::validateField($type, $label, $data);
13b6c8d1e9SAndreas Gohr    }
14b6c8d1e9SAndreas Gohr
15b6c8d1e9SAndreas Gohr}
16