]> git.mxchange.org Git - friendica-addons.git/commitdiff
Remove accept parameter for request again
authorPhilipp <admin@philipp.info>
Sun, 3 Apr 2022 17:35:39 +0000 (19:35 +0200)
committerPhilipp <admin@philipp.info>
Sun, 3 Apr 2022 17:35:39 +0000 (19:35 +0200)
webdav_storage/src/WebDav.php

index 1a31a4c25d364a71c0f96b35b5d7189f131239ea..a5ee5161757a8b426ecef9248495b877daa984e2 100644 (file)
@@ -111,7 +111,7 @@ class WebDav implements ICanWriteToStorage
                        HttpClientOptions::BODY    => $dom->saveXML(),
                ];
 
-               $response = $this->client->request('propfind', $uri, HttpClientAccept::DEFAULT, $opts);
+               $response = $this->client->request('propfind', $uri, $opts);
 
                $responseDoc = new \DOMDocument();
                $responseDoc->loadXML($response->getBody());
@@ -134,7 +134,7 @@ class WebDav implements ICanWriteToStorage
         */
        protected function mkcol(string $uri): bool
        {
-               return $this->client->request('mkcol', $uri, HttpClientAccept::DEFAULT, [HttpClientOptions::AUTH => $this->authOptions])
+               return $this->client->request('mkcol', $uri, [HttpClientOptions::AUTH => $this->authOptions])
                                                        ->getReturnCode() == 200;
        }
 
@@ -200,7 +200,7 @@ class WebDav implements ICanWriteToStorage
        {
                $file = $this->pathForRef($reference);
 
-               $response = $this->client->request('get', $this->url . '/' . $file[0], HttpClientAccept::DEFAULT, [HttpClientOptions::AUTH => $this->authOptions]);
+               $response = $this->client->request('get', $this->url . '/' . $file[0], [HttpClientOptions::AUTH => $this->authOptions]);
 
                if (!$response->isSuccess()) {
                        throw new ReferenceStorageException(sprintf('Invalid reference %s', $reference));
@@ -230,7 +230,7 @@ class WebDav implements ICanWriteToStorage
                        HttpClientOptions::AUTH => $this->authOptions,
                ];
 
-               $this->client->request('put', $this->url . '/' . $file[0], HttpClientAccept::DEFAULT, $opts);
+               $this->client->request('put', $this->url . '/' . $file[0], $opts);
 
                return $reference;
        }
@@ -242,7 +242,7 @@ class WebDav implements ICanWriteToStorage
        {
                $file = $this->pathForRef($reference);
 
-               $response = $this->client->request('delete', $this->url . '/' . $file[0], HttpClientAccept::DEFAULT, [HttpClientOptions::AUTH => $this->authOptions]);
+               $response = $this->client->request('delete', $this->url . '/' . $file[0], [HttpClientOptions::AUTH => $this->authOptions]);
 
                if (!$response->isSuccess()) {
                        throw new ReferenceStorageException(sprintf('Invalid reference %s', $reference));