1 | <?php |
||
9 | class JsonInputParam extends InputParam |
||
10 | { |
||
11 | const TYPE_POST_JSON = 'POST_JSON'; |
||
12 | |||
13 | private $schemaValidator; |
||
14 | |||
15 | private $schema; |
||
16 | |||
17 | public function __construct($key, string $schema, bool $required = self::OPTIONAL) |
||
24 | |||
25 | public function getSchema() |
||
29 | |||
30 | public function getValue() |
||
35 | |||
36 | public function isValid() |
||
46 | } |
||
47 |