OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
php
/
JsonSchema
/
Uri
/
Retrievers
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
07/20/2024 06:32:21 AM
rwxr-xr-x
📄
AbstractRetriever.php
626 bytes
10/21/2017 01:15:38 PM
rw-r--r--
📄
Curl.php
2.11 KB
10/21/2017 01:15:38 PM
rw-r--r--
📄
FileGetContents.php
2.6 KB
10/21/2017 01:15:38 PM
rw-r--r--
📄
PredefinedArray.php
1.27 KB
10/21/2017 01:15:38 PM
rw-r--r--
📄
UriRetrieverInterface.php
746 bytes
10/21/2017 01:15:38 PM
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\Uri\Retrievers; /** * Interface for URI retrievers * * @author Sander Coolen <sander@jibber.nl> */ interface UriRetrieverInterface { /** * Retrieve a schema from the specified URI * * @param string $uri URI that resolves to a JSON schema * * @throws \JsonSchema\Exception\ResourceNotFoundException * * @return mixed string|null */ public function retrieve($uri); /** * Get media content type * * @return string */ public function getContentType(); }