Sha256: 00a4340b5cbdef50941d4fb9562119e14d663fa2a50a5eb8ee868d7924c550c8
Contents?: true
Size: 626 Bytes
Versions: 42
Compression:
Stored size: 626 Bytes
Contents
<?php /** * JsonSchema * * @filesource */ namespace JsonSchema\Uri\Retrievers; /** * AbstractRetriever implements the default shared behavior * that all descendant Retrievers should inherit * * @author Steven Garcia <webwhammy@gmail.com> */ abstract class AbstractRetriever implements UriRetrieverInterface { /** * Media content type * * @var string */ protected $contentType; /** * {@inheritdoc} * * @see \JsonSchema\Uri\Retrievers\UriRetrieverInterface::getContentType() */ public function getContentType() { return $this->contentType; } }
Version data entries
42 entries across 42 versions & 1 rubygems