| 1 | <?php |
||
| 8 | class JsonOutput implements OutputInterface |
||
| 9 | { |
||
| 10 | private $schemaValidator; |
||
| 11 | |||
| 12 | private $code; |
||
| 13 | |||
| 14 | private $schema; |
||
| 15 | |||
| 16 | private $description; |
||
| 17 | |||
| 18 | public function __construct($code, $schema, $description = null) |
||
| 25 | |||
| 26 | public function validate($response) |
||
| 39 | |||
| 40 | public function getCode() |
||
| 44 | |||
| 45 | public function getSchema() |
||
| 49 | |||
| 50 | public function getDescription() |
||
| 54 | } |
||
| 55 |