mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-08-09 10:22:51 +03:00
Standardised facade usage to use via their FQCN
Done via Laravel Shift Workbench
This commit is contained in:
@@ -7,7 +7,7 @@ use BookStack\Auth\User;
|
||||
use BookStack\Entities\Models\Page;
|
||||
use BookStack\Notifications\ConfirmEmail;
|
||||
use BookStack\Notifications\ResetPassword;
|
||||
use DB;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Notification;
|
||||
use Tests\TestCase;
|
||||
use Tests\TestResponse;
|
||||
|
@@ -5,7 +5,7 @@ namespace Tests\Auth;
|
||||
use BookStack\Actions\ActivityType;
|
||||
use BookStack\Auth\SocialAccount;
|
||||
use BookStack\Auth\User;
|
||||
use DB;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Laravel\Socialite\Contracts\Factory;
|
||||
use Laravel\Socialite\Contracts\Provider;
|
||||
use Mockery;
|
||||
|
@@ -6,9 +6,9 @@ use BookStack\Auth\Access\UserInviteService;
|
||||
use BookStack\Auth\User;
|
||||
use BookStack\Notifications\UserInvite;
|
||||
use Carbon\Carbon;
|
||||
use DB;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Str;
|
||||
use Notification;
|
||||
use Illuminate\Support\Facades\Notification;
|
||||
use Tests\TestCase;
|
||||
|
||||
class UserInviteTest extends TestCase
|
||||
|
Reference in New Issue
Block a user