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