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: UriRetrieverInterface.php
Close
<?php /* * This file is part of the JsonSchema package. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace JsonSchema; /** * @package JsonSchema */ interface UriRetrieverInterface { /** * Retrieve a URI * * @param string $uri JSON Schema URI * @param null|string $baseUri * * @return object JSON Schema contents */ public function retrieve($uri, $baseUri = null); }