diff options
Diffstat (limited to 'tests/lib/Lockdown/Filesystem/NoFSTest.php')
-rw-r--r-- | tests/lib/Lockdown/Filesystem/NoFSTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/Lockdown/Filesystem/NoFSTest.php b/tests/lib/Lockdown/Filesystem/NoFSTest.php index a0900ad769d..eaaa7b12955 100644 --- a/tests/lib/Lockdown/Filesystem/NoFSTest.php +++ b/tests/lib/Lockdown/Filesystem/NoFSTest.php @@ -34,16 +34,16 @@ use Test\Traits\UserTrait; class NoFSTest extends \Test\TestCase { use UserTrait; - public function tearDown() { + public function tearDown(): void { $token = new DefaultToken(); $token->setScope([ 'filesystem' => true ]); \OC::$server->getLockdownManager()->setToken($token); - return parent::tearDown(); + parent::tearDown(); } - public function setUp() { + public function setUp(): void { parent::setUp(); $token = new DefaultToken(); $token->setScope([ |