summaryrefslogtreecommitdiffstats
path: root/apps/twofactor_backupcodes/lib/Service
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2016-10-03 21:47:33 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2016-10-03 21:47:33 +0200
commitf27b7fa8d1e5b26835546cbfcf9fff5617045f9c (patch)
treeb1c904d4d33743f39055edbff8caffd0b6137197 /apps/twofactor_backupcodes/lib/Service
parent657c8da81121b272deb29a25f920280a1dc521bc (diff)
downloadnextcloud-server-f27b7fa8d1e5b26835546cbfcf9fff5617045f9c.tar.gz
nextcloud-server-f27b7fa8d1e5b26835546cbfcf9fff5617045f9c.zip
Do not use underscores in PSR4 namespaces of the backup codes app
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/twofactor_backupcodes/lib/Service')
-rw-r--r--apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php b/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php
index 9c78581255f..bb10081bb54 100644
--- a/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php
+++ b/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php
@@ -20,10 +20,10 @@
*
*/
-namespace OCA\TwoFactor_BackupCodes\Service;
+namespace OCA\TwoFactorBackupCodes\Service;
-use OCA\TwoFactor_BackupCodes\Db\BackupCode;
-use OCA\TwoFactor_BackupCodes\Db\BackupCodeMapper;
+use OCA\TwoFactorBackupCodes\Db\BackupCode;
+use OCA\TwoFactorBackupCodes\Db\BackupCodeMapper;
use OCP\IUser;
use OCP\Security\IHasher;
use OCP\Security\ISecureRandom;