swaggest/php-json-schema

View on GitHub
src/RemoteRefProvider.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Swaggest\JsonSchema;


interface RemoteRefProvider
{
    /**
     * @param string $url
     * @return \stdClass|false json_decode of $url resource content
     */
    public function getSchemaData($url);
}