Skip to content

Commit dca724d

Browse files
committed
Fix linting issues
1 parent 3b7f2e9 commit dca724d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/VerificationCodeManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
use Illuminate\Contracts\Queue\ShouldQueue;
66
use Illuminate\Support\Facades\Hash;
77
use Illuminate\Support\Facades\Notification;
8+
use RuntimeException;
89
use Wotz\VerificationCode\Models\VerificationCode;
910
use Wotz\VerificationCode\Notifications\VerificationCodeCreated;
1011
use Wotz\VerificationCode\Notifications\VerificationCodeCreatedInterface;
11-
use RuntimeException;
1212

1313
class VerificationCodeManager
1414
{

tests/Facade/CustomVerificationCodeClassTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
namespace Wotz\VerificationCode\Tests\Facade;
44

5+
use RuntimeException;
56
use Wotz\VerificationCode\Models\VerificationCode;
67
use Wotz\VerificationCode\Tests\TestCase;
78
use Wotz\VerificationCode\VerificationCode as VerificationCodeFacade;
8-
use RuntimeException;
99

1010
class CustomVerificationCodeClassTest extends TestCase
1111
{

tests/Feature/SendVerificationCodeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
use Illuminate\Notifications\AnonymousNotifiable;
66
use Illuminate\Support\Facades\Notification;
77
use Illuminate\Support\Testing\Fakes\NotificationFake;
8+
use RuntimeException;
89
use Wotz\VerificationCode\Models\VerificationCode;
910
use Wotz\VerificationCode\Notifications\VerificationCodeCreated;
1011
use Wotz\VerificationCode\Tests\TestCase;
1112
use Wotz\VerificationCode\VerificationCode as VerificationCodeFacade;
12-
use RuntimeException;
1313

1414
class SendVerificationCodeTest extends TestCase
1515
{

tests/Support/CodeGeneratorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
namespace Wotz\VerificationCode\Tests\Support;
44

55
use Illuminate\Support\Str;
6+
use RuntimeException;
67
use Wotz\VerificationCode\Support\CodeGenerator;
78
use Wotz\VerificationCode\Tests\TestCase;
8-
use RuntimeException;
99

1010
class CodeGeneratorTest extends TestCase
1111
{

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
use Illuminate\Foundation\Testing\DatabaseMigrations;
66
use Illuminate\Foundation\Testing\WithFaker;
77
use Illuminate\Support\Facades\Notification;
8-
use Wotz\VerificationCode\VerificationCodeServiceProvider;
98
use Orchestra\Testbench\TestCase as Orchestra;
9+
use Wotz\VerificationCode\VerificationCodeServiceProvider;
1010

1111
abstract class TestCase extends Orchestra
1212
{

0 commit comments

Comments
 (0)