namespaces refactoring part 3

This commit is contained in:
Peter Papp
2021-07-19 13:40:26 +02:00
parent 54dc57fcbf
commit 29d1b68dd5
26 changed files with 126 additions and 65 deletions

View File

@@ -1,5 +1,5 @@
<?php
namespace Tests\Feature\Accounts;
namespace Tests\App\Users;
use Storage;
use Notification;
@@ -7,8 +7,8 @@ use Tests\TestCase;
use App\Users\Models\User;
use Domain\Settings\Models\Setting;
use Illuminate\Support\Facades\Password;
use App\Users\Notifications\ResetPassword;
use Illuminate\Auth\Notifications\VerifyEmail;
use Domain\Sharing\Notifications\ResetPassword;
class SignFlowTest extends TestCase
{