This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
<?php | |
namespace League\JsonReference; | |
interface LoaderInterface | |
{ | |
/** | |
* Load the json schema from the given path. | |
* | |
* @param string $path The path to load, without the protocol. | |
* | |
* @return object The object resulting from a json_decode of the loaded path. | |
* @throws \League\JsonReference\SchemaLoadingException | |
*/ | |
public function load($path); | |
} |