Moved auth models into right folder

This commit is contained in:
Henry Whitaker
2021-04-10 22:55:19 +01:00
parent 99c64af482
commit 7cf8dfc0b2
7 changed files with 7 additions and 7 deletions

View File

@@ -2,7 +2,7 @@
namespace App\Console\Commands;
use App\Auth\LoginSession;
use App\Models\Auth\LoginSession;
use Carbon\Carbon;
use Illuminate\Console\Command;
use Log;

View File

@@ -2,7 +2,7 @@
namespace App\Helpers;
use App\Auth\EmailVerification;
use App\Models\Auth\EmailVerification;
use App\Models\User;
class EmailVerificationHelper {

View File

@@ -2,8 +2,8 @@
namespace App\Http\Controllers;
use App\Auth\EmailVerification;
use App\Auth\LoginSession as AuthLoginSession;
use App\Models\Auth\EmailVerification;
use App\Models\Auth\LoginSession as AuthLoginSession;
use App\Helpers\EmailVerificationHelper;
use Illuminate\Support\Facades\Auth;
use App\Http\Controllers\Controller;

View File

@@ -2,7 +2,7 @@
namespace App\Http\Middleware;
use App\Auth\LoginSession;
use App\Models\Auth\LoginSession;
use Closure;
use Exception;

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Auth;
namespace App\Models\Auth;
use Illuminate\Database\Eloquent\Model;

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Auth;
namespace App\Models\Auth;
use Illuminate\Database\Eloquent\Model;

Binary file not shown.