Add Feedback :-)

pull/1198/head
Philipp 2021-10-29 08:03:58 +02:00
parent fe296e5a73
commit 6f4e9a14e3
No known key found for this signature in database
GPG Key ID: 24A7501396EB5432
2 changed files with 10 additions and 10 deletions

View File

@ -7,7 +7,7 @@ use Friendica\Core\Storage\Capability\ICanWriteToStorage;
use Friendica\Core\Storage\Exception\ReferenceStorageException;
use Friendica\Core\Storage\Exception\StorageException;
use Friendica\Network\HTTPClient\Client\HttpClientOptions;
use Friendica\Network\HTTPClient\Capability\ICanRequestPerHttp;
use Friendica\Network\HTTPClient\Capability\ICanSendHttpRequests;
use Friendica\Util\Strings;
use Psr\Log\LoggerInterface;
@ -21,7 +21,7 @@ class WebDav implements ICanWriteToStorage
/** @var string */
private $url;
/** @var ICanRequestPerHttp */
/** @var ICanSendHttpRequests */
private $client;
/** @var LoggerInterface */
@ -33,12 +33,12 @@ class WebDav implements ICanWriteToStorage
/**
* WebDav constructor
*
* @param string $url The full URL to the webdav endpoint (including the subdirectories)
* @param array $authOptions The authentication options for the http calls ( ['username', 'password', 'auth_type'] )
* @param ICanRequestPerHttp $client The http client for communicating with the WebDav endpoint
* @param LoggerInterface $logger The standard logging class
* @param string $url The full URL to the webdav endpoint (including the subdirectories)
* @param array $authOptions The authentication options for the http calls ( ['username', 'password', 'auth_type'] )
* @param ICanSendHttpRequests $client The http client for communicating with the WebDav endpoint
* @param LoggerInterface $logger The standard logging class
*/
public function __construct(string $url, array $authOptions, ICanRequestPerHttp $client, LoggerInterface $logger)
public function __construct(string $url, array $authOptions, ICanSendHttpRequests $client, LoggerInterface $logger)
{
$this->client = $client;
$this->logger = $logger;

View File

@ -6,7 +6,7 @@ use Friendica\Core\Config\Capability\IManageConfigValues;
use Friendica\Core\L10n;
use Friendica\Core\Storage\Capability\ICanConfigureStorage;
use Friendica\Network\HTTPClient\Client\HttpClientOptions;
use Friendica\Network\HTTPClient\Capability\ICanRequestPerHttp;
use Friendica\Network\HTTPClient\Capability\ICanSendHttpRequests;
/**
* The WebDav Backend Storage configuration class
@ -24,7 +24,7 @@ class WebDavConfig implements ICanConfigureStorage
/** @var string */
private $url;
/** @var \Friendica\Network\HTTPClient\Capability\ICanRequestPerHttp */
/** @var \Friendica\Network\HTTPClient\Capability\ICanSendHttpRequests */
private $client;
/** @var array */
@ -46,7 +46,7 @@ class WebDavConfig implements ICanConfigureStorage
return $this->authOptions;
}
public function __construct(L10n $l10n, IManageConfigValues $config, ICanRequestPerHttp $client)
public function __construct(L10n $l10n, IManageConfigValues $config, ICanSendHttpRequests $client)
{
$this->l10n = $l10n;
$this->config = $config;