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

github.com/nextcloud/twofactor_gateway.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2018-08-22 09:30:49 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2018-08-22 09:30:49 +0300
commitc15e1e879e9854c5feaae71a8681878a099ed408 (patch)
tree3edce08de15beeae26b6e9d37b5323f91b97ff61
parent2fc2e7f51a99474d31bcae4bb5ed19eb79dbeea8 (diff)
Fix license header author
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rw-r--r--lib/Command/Configure.php2
-rw-r--r--lib/Command/Status.php2
-rw-r--r--lib/Command/Test.php2
-rw-r--r--lib/Exception/ConfigurationException.php2
-rw-r--r--lib/Exception/InvalidSmsProviderException.php2
-rw-r--r--lib/Service/Gateway/IGatewayConfig.php2
-rw-r--r--lib/Service/Gateway/SMS/Gateway.php2
-rw-r--r--lib/Service/Gateway/SMS/GatewayConfig.php2
-rw-r--r--lib/Service/Gateway/SMS/Provider/IProvider.php2
-rw-r--r--lib/Service/Gateway/SMS/Provider/IProviderConfig.php2
-rw-r--r--lib/Service/Gateway/SMS/Provider/PlaySMSConfig.php2
-rw-r--r--lib/Service/Gateway/SMS/Provider/ProviderFactory.php2
-rw-r--r--lib/Service/Gateway/Signal/GatewayConfig.php2
13 files changed, 13 insertions, 13 deletions
diff --git a/lib/Command/Configure.php b/lib/Command/Configure.php
index 0d1d2b0..b7c502c 100644
--- a/lib/Command/Configure.php
+++ b/lib/Command/Configure.php
@@ -3,7 +3,7 @@
declare(strict_types=1);
/**
- * @author Pascal Clémot <pascal.clemot@free.fr>
+ * @author Christoph Wurst <christoph@winzerhof-wurst.at>
*
* Nextcloud - Two-factor Gateway
*
diff --git a/lib/Command/Status.php b/lib/Command/Status.php
index c6c32e7..40df770 100644
--- a/lib/Command/Status.php
+++ b/lib/Command/Status.php
@@ -3,7 +3,7 @@
declare(strict_types=1);
/**
- * @author Pascal Clémot <pascal.clemot@free.fr>
+ * @author Christoph Wurst <christoph@winzerhof-wurst.at>
*
* Nextcloud - Two-factor Gateway
*
diff --git a/lib/Command/Test.php b/lib/Command/Test.php
index fd336be..0db20f2 100644
--- a/lib/Command/Test.php
+++ b/lib/Command/Test.php
@@ -3,7 +3,7 @@
declare(strict_types=1);
/**
- * @author Pascal Clémot <pascal.clemot@free.fr>
+ * @author Christoph Wurst <christoph@winzerhof-wurst.at>
*
* Nextcloud - Two-factor Gateway
*
diff --git a/lib/Exception/ConfigurationException.php b/lib/Exception/ConfigurationException.php
index cef49f0..97c8a9f 100644
--- a/lib/Exception/ConfigurationException.php
+++ b/lib/Exception/ConfigurationException.php
@@ -3,7 +3,7 @@
declare(strict_types=1);
/**
- * @author Pascal Clémot <pascal.clemot@free.fr>
+ * @author Christoph Wurst <christoph@winzerhof-wurst.at>
*
* Nextcloud - Two-factor Gateway
*
diff --git a/lib/Exception/InvalidSmsProviderException.php b/lib/Exception/InvalidSmsProviderException.php
index f6e7e18..7221e38 100644
--- a/lib/Exception/InvalidSmsProviderException.php
+++ b/lib/Exception/InvalidSmsProviderException.php
@@ -3,7 +3,7 @@
declare(strict_types=1);
/**
- * @author Pascal Clémot <pascal.clemot@free.fr>
+ * @author Christoph Wurst <christoph@winzerhof-wurst.at>
*
* Nextcloud - Two-factor Gateway
*
diff --git a/lib/Service/Gateway/IGatewayConfig.php b/lib/Service/Gateway/IGatewayConfig.php
index 5b91e47..ec9e823 100644
--- a/lib/Service/Gateway/IGatewayConfig.php
+++ b/lib/Service/Gateway/IGatewayConfig.php
@@ -3,7 +3,7 @@
declare(strict_types=1);
/**
- * @author Pascal Clémot <pascal.clemot@free.fr>
+ * @author Christoph Wurst <christoph@winzerhof-wurst.at>
*
* Nextcloud - Two-factor Gateway
*
diff --git a/lib/Service/Gateway/SMS/Gateway.php b/lib/Service/Gateway/SMS/Gateway.php
index 323e8d0..53f985d 100644
--- a/lib/Service/Gateway/SMS/Gateway.php
+++ b/lib/Service/Gateway/SMS/Gateway.php
@@ -3,7 +3,7 @@
declare(strict_types=1);
/**
- * @author Pascal Clémot <pascal.clemot@free.fr>
+ * @author Christoph Wurst <christoph@winzerhof-wurst.at>
*
* Nextcloud - Two-factor Gateway
*
diff --git a/lib/Service/Gateway/SMS/GatewayConfig.php b/lib/Service/Gateway/SMS/GatewayConfig.php
index 9e19f82..f72df0a 100644
--- a/lib/Service/Gateway/SMS/GatewayConfig.php
+++ b/lib/Service/Gateway/SMS/GatewayConfig.php
@@ -3,7 +3,7 @@
declare(strict_types=1);
/**
- * @author Pascal Clémot <pascal.clemot@free.fr>
+ * @author Christoph Wurst <christoph@winzerhof-wurst.at>
*
* Nextcloud - Two-factor Gateway
*
diff --git a/lib/Service/Gateway/SMS/Provider/IProvider.php b/lib/Service/Gateway/SMS/Provider/IProvider.php
index c6dab88..7f41cac 100644
--- a/lib/Service/Gateway/SMS/Provider/IProvider.php
+++ b/lib/Service/Gateway/SMS/Provider/IProvider.php
@@ -3,7 +3,7 @@
declare(strict_types=1);
/**
- * @author Pascal Clémot <pascal.clemot@free.fr>
+ * @author Christoph Wurst <christoph@winzerhof-wurst.at>
*
* Nextcloud - Two-factor Gateway
*
diff --git a/lib/Service/Gateway/SMS/Provider/IProviderConfig.php b/lib/Service/Gateway/SMS/Provider/IProviderConfig.php
index 6feba46..bf0b236 100644
--- a/lib/Service/Gateway/SMS/Provider/IProviderConfig.php
+++ b/lib/Service/Gateway/SMS/Provider/IProviderConfig.php
@@ -3,7 +3,7 @@
declare(strict_types=1);
/**
- * @author Pascal Clémot <pascal.clemot@free.fr>
+ * @author Christoph Wurst <christoph@winzerhof-wurst.at>
*
* Nextcloud - Two-factor Gateway
*
diff --git a/lib/Service/Gateway/SMS/Provider/PlaySMSConfig.php b/lib/Service/Gateway/SMS/Provider/PlaySMSConfig.php
index 4ebb2d2..b49689e 100644
--- a/lib/Service/Gateway/SMS/Provider/PlaySMSConfig.php
+++ b/lib/Service/Gateway/SMS/Provider/PlaySMSConfig.php
@@ -3,7 +3,7 @@
declare(strict_types=1);
/**
- * @author Pascal Clémot <pascal.clemot@free.fr>
+ * @author Christoph Wurst <christoph@winzerhof-wurst.at>
*
* Nextcloud - Two-factor Gateway
*
diff --git a/lib/Service/Gateway/SMS/Provider/ProviderFactory.php b/lib/Service/Gateway/SMS/Provider/ProviderFactory.php
index 5281061..588f384 100644
--- a/lib/Service/Gateway/SMS/Provider/ProviderFactory.php
+++ b/lib/Service/Gateway/SMS/Provider/ProviderFactory.php
@@ -3,7 +3,7 @@
declare(strict_types=1);
/**
- * @author Pascal Clémot <pascal.clemot@free.fr>
+ * @author Christoph Wurst <christoph@winzerhof-wurst.at>
*
* Nextcloud - Two-factor Gateway
*
diff --git a/lib/Service/Gateway/Signal/GatewayConfig.php b/lib/Service/Gateway/Signal/GatewayConfig.php
index e067876..26b7ded 100644
--- a/lib/Service/Gateway/Signal/GatewayConfig.php
+++ b/lib/Service/Gateway/Signal/GatewayConfig.php
@@ -3,7 +3,7 @@
declare(strict_types=1);
/**
- * @author Pascal Clémot <pascal.clemot@free.fr>
+ * @author Christoph Wurst <christoph@winzerhof-wurst.at>
*
* Nextcloud - Two-factor Gateway
*