Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
gdebrauwer committed Sep 26, 2024
1 parent 3b7f2e9 commit dca724d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/VerificationCodeManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Facade/CustomVerificationCodeClassTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/SendVerificationCodeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Support/CodeGeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit dca724d

Please sign in to comment.