From e50e9ddd61e4452ddbcd295845e9c8118b7651cd Mon Sep 17 00:00:00 2001 From: Florent Morselli <contact@spomky-labs.com> Date: Sun, 26 Jun 2022 09:16:36 +0200 Subject: [PATCH] Few doc pages --- ...ocumentation_issue.md => 3_Documentation_issue.md} | 0 .github/ISSUE_TEMPLATE/3_Support_question.md | 11 ----------- tests/TOTPTest.php | 4 ++-- 3 files changed, 2 insertions(+), 13 deletions(-) rename .github/ISSUE_TEMPLATE/{4_Documentation_issue.md => 3_Documentation_issue.md} (100%) delete mode 100644 .github/ISSUE_TEMPLATE/3_Support_question.md diff --git a/.github/ISSUE_TEMPLATE/4_Documentation_issue.md b/.github/ISSUE_TEMPLATE/3_Documentation_issue.md similarity index 100% rename from .github/ISSUE_TEMPLATE/4_Documentation_issue.md rename to .github/ISSUE_TEMPLATE/3_Documentation_issue.md diff --git a/.github/ISSUE_TEMPLATE/3_Support_question.md b/.github/ISSUE_TEMPLATE/3_Support_question.md deleted file mode 100644 index 6b4f060..0000000 --- a/.github/ISSUE_TEMPLATE/3_Support_question.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -name: â›” Support Question -about: We usually do not provide support. Please ask your question on https://stackoverflow.com/ - ---- - -We use GitHub issues only to discuss bugs and new features. -For this kind of questions about using the library or the bundle, please use -https://stackoverflow.com/ using the tags `[aes]` and `[php]` - -Thanks! \ No newline at end of file diff --git a/tests/TOTPTest.php b/tests/TOTPTest.php index 289c26b..01a2bdf 100644 --- a/tests/TOTPTest.php +++ b/tests/TOTPTest.php @@ -25,8 +25,8 @@ final class TOTPTest extends TestCase { $this->expectException(InvalidArgumentException::class); $this->expectExceptionMessage('The label is not set.'); - $hotp = TOTP::create(); - $hotp->getProvisioningUri(); + $otp = TOTP::create(); + $otp->getProvisioningUri(); } /** -- GitLab