OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
php
/
JsonSchema
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
07/20/2024 06:32:21 AM
rwxr-xr-x
📁
Constraints
-
07/20/2024 06:32:21 AM
rwxr-xr-x
📁
Entity
-
07/20/2024 06:32:21 AM
rwxr-xr-x
📁
Exception
-
07/20/2024 06:32:21 AM
rwxr-xr-x
📁
Iterator
-
07/20/2024 06:32:21 AM
rwxr-xr-x
📄
Rfc3339.php
886 bytes
10/21/2017 01:15:38 PM
rw-r--r--
📄
SchemaStorage.php
5.29 KB
10/21/2017 01:15:38 PM
rw-r--r--
📄
SchemaStorageInterface.php
802 bytes
10/21/2017 01:15:38 PM
rw-r--r--
📁
Uri
-
07/20/2024 06:32:21 AM
rwxr-xr-x
📄
UriResolverInterface.php
530 bytes
10/21/2017 01:15:38 PM
rw-r--r--
📄
UriRetrieverInterface.php
517 bytes
10/21/2017 01:15:38 PM
rw-r--r--
📄
Validator.php
2.84 KB
10/21/2017 01:15:38 PM
rw-r--r--
📄
autoload.php
4.58 KB
10/25/2017 01:56:33 AM
rw-r--r--
Editing: SchemaStorageInterface.php
Close
<?php namespace JsonSchema; interface SchemaStorageInterface { /** * Adds schema with given identifier * * @param string $id * @param object $schema */ public function addSchema($id, $schema = null); /** * Returns schema for given identifier, or null if it does not exist * * @param string $id * * @return object */ public function getSchema($id); /** * Returns schema for given reference with all sub-references resolved * * @param string $ref * * @return object */ public function resolveRef($ref); /** * Returns schema referenced by '$ref' property * * @param mixed $refSchema * * @return object */ public function resolveRefSchema($refSchema); }