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 6b4f0609aeaf4356e78e7f85f796b9aebf7f134b..0000000000000000000000000000000000000000 --- 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 289c26b92db69939f97d19e26e496967930d564a..01a2bdfbd2accf0fc7d2a5575b2cab9d45ac484e 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(); } /**