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

github.com/nextcloud/twofactor_totp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-12-29 11:44:40 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-12-29 12:04:20 +0300
commit2d20e4c37de724f6c95cf7cb487e34d1645bb6ae (patch)
tree36491adc9f661d7450bcc572052183eb5021e9c0 /tests/Unit/Controller/SettingsControllerTest.php
parent87e241a60b12cff07e3b3b50317a968b3667610f (diff)
Drop php7.2 and add the nextcloud coding standard
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests/Unit/Controller/SettingsControllerTest.php')
-rw-r--r--tests/Unit/Controller/SettingsControllerTest.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/Unit/Controller/SettingsControllerTest.php b/tests/Unit/Controller/SettingsControllerTest.php
index 88eef84..5963448 100644
--- a/tests/Unit/Controller/SettingsControllerTest.php
+++ b/tests/Unit/Controller/SettingsControllerTest.php
@@ -34,7 +34,6 @@ use OCP\IUserSession;
use PHPUnit\Framework\TestCase;
class SettingsControllerTest extends TestCase {
-
private $request;
private $userSession;
private $totp;
@@ -134,5 +133,4 @@ class SettingsControllerTest extends TestCase {
$this->expectException(InvalidArgumentException::class);
$this->controller->enable(17);
}
-
}