diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-03-30 09:34:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-30 09:34:25 +0200 |
commit | 2200cc85629f449dc8cb747cd6aa0049a3cdab6d (patch) | |
tree | aea025990e7f9e684f7ab7a7a4bdbdf90d262cf1 /apps/dav/tests/unit/Connector/Sabre/RequestTest | |
parent | 9e8ac1d24a5cd5f41c0b160d79be49195d4bf8b9 (diff) | |
parent | 55081b7fd29b58600d5e0d13ed678de902098e4f (diff) | |
download | nextcloud-server-2200cc85629f449dc8cb747cd6aa0049a3cdab6d.tar.gz nextcloud-server-2200cc85629f449dc8cb747cd6aa0049a3cdab6d.zip |
Merge pull request #19325 from nextcloud/dependachristoph/composer/sabre-4.0
Update Sabre (and friends) to 4.0
Diffstat (limited to 'apps/dav/tests/unit/Connector/Sabre/RequestTest')
-rw-r--r-- | apps/dav/tests/unit/Connector/Sabre/RequestTest/RequestTestCase.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/tests/unit/Connector/Sabre/RequestTest/RequestTestCase.php b/apps/dav/tests/unit/Connector/Sabre/RequestTest/RequestTestCase.php index 771d73dec5f..3624a9cc30e 100644 --- a/apps/dav/tests/unit/Connector/Sabre/RequestTest/RequestTestCase.php +++ b/apps/dav/tests/unit/Connector/Sabre/RequestTest/RequestTestCase.php @@ -92,7 +92,7 @@ abstract class RequestTestCase extends TestCase { * @return \Sabre\HTTP\Response * @throws \Exception */ - protected function request($view, $user, $password, $method, $url, $body = null, $headers = null) { + protected function request($view, $user, $password, $method, $url, $body = null, $headers = []) { if (is_string($body)) { $body = $this->getStream($body); } |