diff --git a/src/AuthTestsServiceProvider.php b/src/AuthTestsServiceProvider.php index 1488d59..04941ca 100644 --- a/src/AuthTestsServiceProvider.php +++ b/src/AuthTestsServiceProvider.php @@ -2,8 +2,8 @@ namespace DCzajkowski\AuthTests; -use DCzajkowski\AuthTests\Console\Commands\AuthTestsMakeCommand; use Illuminate\Support\ServiceProvider; +use DCzajkowski\AuthTests\Console\Commands\AuthTestsMakeCommand; class AuthTestsServiceProvider extends ServiceProvider { diff --git a/src/Console/stubs/tests/Feature/Auth/RegisterTest.php b/src/Console/stubs/tests/Feature/Auth/RegisterTest.php index 713e114..49c9f6f 100644 --- a/src/Console/stubs/tests/Feature/Auth/RegisterTest.php +++ b/src/Console/stubs/tests/Feature/Auth/RegisterTest.php @@ -3,11 +3,11 @@ namespace Tests\Feature\Auth; use App\User; +use Tests\TestCase; +use Illuminate\Support\Facades\Hash; +use Illuminate\Support\Facades\Event; use Illuminate\Auth\Events\Registered; use Illuminate\Foundation\Testing\RefreshDatabase; -use Illuminate\Support\Facades\Event; -use Illuminate\Support\Facades\Hash; -use Tests\TestCase; class RegisterTest extends TestCase { diff --git a/src/Console/stubs/tests/Feature/Auth/ResetPasswordTest.php b/src/Console/stubs/tests/Feature/Auth/ResetPasswordTest.php index 3fd613a..8adb901 100644 --- a/src/Console/stubs/tests/Feature/Auth/ResetPasswordTest.php +++ b/src/Console/stubs/tests/Feature/Auth/ResetPasswordTest.php @@ -3,12 +3,12 @@ namespace Tests\Feature\Auth; use App\User; -use Illuminate\Auth\Events\PasswordReset; -use Illuminate\Foundation\Testing\RefreshDatabase; -use Illuminate\Support\Facades\Event; +use Tests\TestCase; use Illuminate\Support\Facades\Hash; +use Illuminate\Support\Facades\Event; use Illuminate\Support\Facades\Password; -use Tests\TestCase; +use Illuminate\Auth\Events\PasswordReset; +use Illuminate\Foundation\Testing\RefreshDatabase; class ResetPasswordTest extends TestCase {