Skip to content

Commit

Permalink
remove references to Traits/AzureHelpers
Browse files Browse the repository at this point in the history
  • Loading branch information
Kipjr committed Sep 8, 2024
1 parent df10c3f commit 6b805c4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
3 changes: 1 addition & 2 deletions app/Http/Controllers/MensaCookController.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
use App\Models\Mensa;
use App\Models\MensaExtraOption;
use App\Models\MenuItem;
use App\Traits\AzureHelpers;
use App\Traits\Logger;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\ModelNotFoundException;
Expand All @@ -17,7 +16,7 @@

class MensaCookController extends Controller
{
use AzureHelpers, Logger;
use Logger;

public function __construct(){
$this->middleware('auth');
Expand Down
3 changes: 1 addition & 2 deletions app/Http/Controllers/SigninController.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
use App\Models\MensaExtraOption;
use App\Models\MensaUser;
use App\Models\User;
use App\Traits\AzureHelpers;
use App\Traits\Logger;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\ModelNotFoundException;
Expand All @@ -20,7 +19,7 @@

class SigninController extends Controller
{
use AzureHelpers, Logger;
use Logger;

public function mailSignin(Request $request, $userToken){
try {
Expand Down
2 changes: 0 additions & 2 deletions app/Listeners/CookieLoginListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@

namespace App\Listeners;

use App\Traits\AzureHelpers;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Support\Facades\Auth;

class CookieLoginListener
{
use AzureHelpers;
/**
* Create the event listener.
*
Expand Down

0 comments on commit 6b805c4

Please sign in to comment.