Skip to content

Commit 9a84f8b

Browse files
committed
Merge pull request #85 from alexmmm/fix-duplicate-abstract-declaration
remove abstract declaration of 'retrieve' which duplicated interface declaration
2 parents ad8b959 + 22cdf78 commit 9a84f8b

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

src/JsonSchema/Uri/Retrievers/AbstractRetriever.php

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,7 @@ abstract class AbstractRetriever implements UriRetrieverInterface
1717
* @var string
1818
*/
1919
protected $contentType;
20-
21-
/**
22-
* {@inheritDoc}
23-
* @see \JsonSchema\Uri\Retrievers\UriRetrieverInterface::retrieve()
24-
*/
25-
public abstract function retrieve($uri);
26-
20+
2721
/**
2822
* {@inheritDoc}
2923
* @see \JsonSchema\Uri\Retrievers\UriRetrieverInterface::getContentType()
@@ -32,4 +26,4 @@ public function getContentType()
3226
{
3327
return $this->contentType;
3428
}
35-
}
29+
}

0 commit comments

Comments
 (0)