summaryrefslogtreecommitdiffstats
path: root/apps/provisioning_api/tests/TestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/provisioning_api/tests/TestCase.php')
-rw-r--r--apps/provisioning_api/tests/TestCase.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/provisioning_api/tests/TestCase.php b/apps/provisioning_api/tests/TestCase.php
index 7d65c5bc1bc..72b7b9527ea 100644
--- a/apps/provisioning_api/tests/TestCase.php
+++ b/apps/provisioning_api/tests/TestCase.php
@@ -40,7 +40,7 @@ abstract class TestCase extends \Test\TestCase {
/** @var IGroupManager */
protected $groupManager;
- protected function setUp() {
+ protected function setUp(): void {
parent::setUp();
$this->userManager = \OC::$server->getUserManager();
@@ -63,7 +63,7 @@ abstract class TestCase extends \Test\TestCase {
return count($users) == 1 ? reset($users) : $users;
}
- protected function tearDown() {
+ protected function tearDown(): void {
foreach($this->users as $user) {
$user->delete();
}