diff options
Diffstat (limited to 'apps/dav/tests/unit/Files')
-rw-r--r-- | apps/dav/tests/unit/Files/FileSearchBackendTest.php | 2 | ||||
-rw-r--r-- | apps/dav/tests/unit/Files/Sharing/FilesDropPluginTest.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/tests/unit/Files/FileSearchBackendTest.php b/apps/dav/tests/unit/Files/FileSearchBackendTest.php index 20a7566c2fd..b524af5f390 100644 --- a/apps/dav/tests/unit/Files/FileSearchBackendTest.php +++ b/apps/dav/tests/unit/Files/FileSearchBackendTest.php @@ -72,7 +72,7 @@ class FileSearchBackendTest extends TestCase { /** @var Directory|\PHPUnit_Framework_MockObject_MockObject */ private $davFolder; - protected function setUp() { + protected function setUp(): void { parent::setUp(); $this->user = $this->createMock(IUser::class); diff --git a/apps/dav/tests/unit/Files/Sharing/FilesDropPluginTest.php b/apps/dav/tests/unit/Files/Sharing/FilesDropPluginTest.php index 90e8b007833..f311b0f2cb3 100644 --- a/apps/dav/tests/unit/Files/Sharing/FilesDropPluginTest.php +++ b/apps/dav/tests/unit/Files/Sharing/FilesDropPluginTest.php @@ -48,7 +48,7 @@ class FilesDropPluginTest extends TestCase { /** @var ResponseInterface|\PHPUnit_Framework_MockObject_MockObject */ private $response; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->view = $this->createMock(View::class); |