Merge remote-tracking branch 'upstream/2021.06-rc' into proxy2

This commit is contained in:
Michael
2021-06-28 10:11:41 +00:00
10 changed files with 1094 additions and 1085 deletions

View File

@@ -23,6 +23,7 @@ namespace Friendica\Model\Storage;
use BadMethodCallException;
use Friendica\Util\HTTPSignature;
use Friendica\Network\IHTTPRequest;
/**
* External resource storage class
@@ -34,6 +35,14 @@ class ExternalResource implements IStorage
{
const NAME = 'ExternalResource';
/** @var IHTTPRequest */
private $httpRequest;
public function __construct(IHTTPRequest $httpRequest)
{
$this->httpRequest = $httpRequest;
}
/**
* @inheritDoc
*/