| 1 | <?php |
||
| 7 | class JsonInputParam extends InputParam |
||
| 8 | { |
||
| 9 | const TYPE_POST_JSON = 'POST_JSON'; |
||
| 10 | |||
| 11 | private $schemaValidator; |
||
| 12 | |||
| 13 | private $schema; |
||
| 14 | |||
| 15 | public function __construct($key, $schema, $required = self::OPTIONAL, $description = '') |
||
| 22 | |||
| 23 | public function getSchema() |
||
| 27 | |||
| 28 | public function getValue() |
||
| 33 | |||
| 34 | public function isValid() |
||
| 44 | } |
||
| 45 |