Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-11-21 18:40:38 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-11-27 15:34:41 +0300
commitc007ca624f4a95e1a491221d425fcb2fa6e5589a (patch)
treeb60aa133b438eb116ac3579283aa8a7967efd12b /apps/files_external/tests/Storage/WebdavTest.php
parente0f32814e33f9ebb8c42744611048cbfac1eb588 (diff)
Make phpunit8 compatible
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/files_external/tests/Storage/WebdavTest.php')
-rw-r--r--apps/files_external/tests/Storage/WebdavTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/tests/Storage/WebdavTest.php b/apps/files_external/tests/Storage/WebdavTest.php
index c0d69592c2a..1aae245d675 100644
--- a/apps/files_external/tests/Storage/WebdavTest.php
+++ b/apps/files_external/tests/Storage/WebdavTest.php
@@ -39,7 +39,7 @@ use OC\Files\Type\Detection;
*/
class WebdavTest extends \Test\Files\Storage\Storage {
- protected function setUp() {
+ protected function setUp(): void {
parent::setUp();
$id = $this->getUniqueID();
@@ -55,7 +55,7 @@ class WebdavTest extends \Test\Files\Storage\Storage {
$this->instance->mkdir('/');
}
- protected function tearDown() {
+ protected function tearDown(): void {
if ($this->instance) {
$this->instance->rmdir('/');
}