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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/IMAP/AbstractTest.php')
-rw-r--r--tests/Unit/IMAP/AbstractTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Unit/IMAP/AbstractTest.php b/tests/Unit/IMAP/AbstractTest.php
index c81a828ef..9783ba565 100644
--- a/tests/Unit/IMAP/AbstractTest.php
+++ b/tests/Unit/IMAP/AbstractTest.php
@@ -41,7 +41,7 @@ abstract class AbstractTest extends TestCase {
/** @var string[] */
private static $createdMailboxes = [];
- public static function setUpBeforeClass() {
+ public static function setUpBeforeClass(): void {
$user = 'user@domain.tld';
$password = 'mypassword';
$password = OC::$server->getCrypto()->encrypt($password);
@@ -64,7 +64,7 @@ abstract class AbstractTest extends TestCase {
self::$account->getImapConnection();
}
- public static function tearDownAfterClass() {
+ public static function tearDownAfterClass(): void {
foreach (self::$createdMailboxes as $createdMailbox) {
try {
self::deleteMailbox($createdMailbox);