From dca724d5da01e651dd8bbd390fbef4d684662e10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gu=CC=88nther=20Debrauwer?= Date: Thu, 26 Sep 2024 13:01:34 +0200 Subject: [PATCH] Fix linting issues --- src/VerificationCodeManager.php | 2 +- tests/Facade/CustomVerificationCodeClassTest.php | 2 +- tests/Feature/SendVerificationCodeTest.php | 2 +- tests/Support/CodeGeneratorTest.php | 2 +- tests/TestCase.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/VerificationCodeManager.php b/src/VerificationCodeManager.php index e654b2e..f01450c 100644 --- a/src/VerificationCodeManager.php +++ b/src/VerificationCodeManager.php @@ -5,10 +5,10 @@ use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Support\Facades\Hash; use Illuminate\Support\Facades\Notification; +use RuntimeException; use Wotz\VerificationCode\Models\VerificationCode; use Wotz\VerificationCode\Notifications\VerificationCodeCreated; use Wotz\VerificationCode\Notifications\VerificationCodeCreatedInterface; -use RuntimeException; class VerificationCodeManager { diff --git a/tests/Facade/CustomVerificationCodeClassTest.php b/tests/Facade/CustomVerificationCodeClassTest.php index 0747947..34cd577 100644 --- a/tests/Facade/CustomVerificationCodeClassTest.php +++ b/tests/Facade/CustomVerificationCodeClassTest.php @@ -2,10 +2,10 @@ namespace Wotz\VerificationCode\Tests\Facade; +use RuntimeException; use Wotz\VerificationCode\Models\VerificationCode; use Wotz\VerificationCode\Tests\TestCase; use Wotz\VerificationCode\VerificationCode as VerificationCodeFacade; -use RuntimeException; class CustomVerificationCodeClassTest extends TestCase { diff --git a/tests/Feature/SendVerificationCodeTest.php b/tests/Feature/SendVerificationCodeTest.php index cfd1b51..e81f6d6 100644 --- a/tests/Feature/SendVerificationCodeTest.php +++ b/tests/Feature/SendVerificationCodeTest.php @@ -5,11 +5,11 @@ use Illuminate\Notifications\AnonymousNotifiable; use Illuminate\Support\Facades\Notification; use Illuminate\Support\Testing\Fakes\NotificationFake; +use RuntimeException; use Wotz\VerificationCode\Models\VerificationCode; use Wotz\VerificationCode\Notifications\VerificationCodeCreated; use Wotz\VerificationCode\Tests\TestCase; use Wotz\VerificationCode\VerificationCode as VerificationCodeFacade; -use RuntimeException; class SendVerificationCodeTest extends TestCase { diff --git a/tests/Support/CodeGeneratorTest.php b/tests/Support/CodeGeneratorTest.php index 944f6f4..a7f0b06 100644 --- a/tests/Support/CodeGeneratorTest.php +++ b/tests/Support/CodeGeneratorTest.php @@ -3,9 +3,9 @@ namespace Wotz\VerificationCode\Tests\Support; use Illuminate\Support\Str; +use RuntimeException; use Wotz\VerificationCode\Support\CodeGenerator; use Wotz\VerificationCode\Tests\TestCase; -use RuntimeException; class CodeGeneratorTest extends TestCase { diff --git a/tests/TestCase.php b/tests/TestCase.php index 7c7f8d2..7245cae 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -5,8 +5,8 @@ use Illuminate\Foundation\Testing\DatabaseMigrations; use Illuminate\Foundation\Testing\WithFaker; use Illuminate\Support\Facades\Notification; -use Wotz\VerificationCode\VerificationCodeServiceProvider; use Orchestra\Testbench\TestCase as Orchestra; +use Wotz\VerificationCode\VerificationCodeServiceProvider; abstract class TestCase extends Orchestra {