PluginProbe ʕ •ᴥ•ʔ
Secure Custom Fields / trunk
Secure Custom Fields vtrunk
6.9.1 6.9.0 6.8.9 6.8.7 6.8.8 6.8.6 6.8.4 6.8.5 trunk 6.4.0-beta1 6.4.0-beta2 6.4.1 6.4.1-beta3 6.4.1-beta4 6.4.1-beta5 6.4.1-beta6 6.4.1-beta7 6.4.2 6.5.0 6.5.1 6.5.2 6.5.3 6.5.4 6.5.5 6.5.6 6.5.7 6.6.0 6.7.0 6.7.1 6.8.0 6.8.1 6.8.2 6.8.3
secure-custom-fields / vendor / justinrainbow / json-schema / src / JsonSchema / UriRetrieverInterface.php
secure-custom-fields / vendor / justinrainbow / json-schema / src / JsonSchema Last commit date
Constraints 8 months ago Entity 8 months ago Exception 8 months ago Iterator 8 months ago Uri 8 months ago Rfc3339.php 8 months ago SchemaStorage.php 8 months ago SchemaStorageInterface.php 8 months ago UriResolverInterface.php 8 months ago UriRetrieverInterface.php 8 months ago Validator.php 8 months ago
UriRetrieverInterface.php
27 lines
1 <?php
2
3 /*
4 * This file is part of the JsonSchema package.
5 *
6 * For the full copyright and license information, please view the LICENSE
7 * file that was distributed with this source code.
8 */
9
10 namespace JsonSchema;
11
12 /**
13 * @package JsonSchema
14 */
15 interface UriRetrieverInterface
16 {
17 /**
18 * Retrieve a URI
19 *
20 * @param string $uri JSON Schema URI
21 * @param null|string $baseUri
22 *
23 * @return object JSON Schema contents
24 */
25 public function retrieve($uri, $baseUri = null);
26 }
27