Skip to content
This repository has been archived by the owner on Jul 26, 2024. It is now read-only.

Commit

Permalink
Shift cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
laravel-shift committed May 15, 2024
1 parent cd64c00 commit 4970ea6
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 12 deletions.
3 changes: 1 addition & 2 deletions app/Http/Controllers/Auth/AuthenticatedSessionController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@

namespace App\Http\Controllers\Auth;

use App\Providers\AppServiceProvider;
use App\Http\Controllers\Controller;
use App\Http\Requests\Auth\LoginRequest;
use App\Providers\RouteServiceProvider;
use App\Providers\AppServiceProvider;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
Expand Down
3 changes: 1 addition & 2 deletions app/Http/Controllers/Auth/ConfirmablePasswordController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

namespace App\Http\Controllers\Auth;

use App\Providers\AppServiceProvider;
use App\Http\Controllers\Controller;
use App\Providers\RouteServiceProvider;
use App\Providers\AppServiceProvider;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
Expand Down
1 change: 0 additions & 1 deletion app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,5 @@ public function bootRoute(): void
return Limit::perHour(20)->by($request->ip());
});


}
}
4 changes: 0 additions & 4 deletions config/app.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
<?php

use Illuminate\Support\Facades\Facade;
use Illuminate\Support\ServiceProvider;

return [

'company_name' => env('APP_COMPANY_NAME', 'MailBag'),

'home_redirect_url' => env('HOME_REDIRECT_URL', null),


];
1 change: 0 additions & 1 deletion routes/console.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
$this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote')->hourly();


Schedule::job(new FindRssFeedsToReviewJob())->everyFifteenMinutes();
Schedule::job(new ScrubSignupsJob())->daily();
Schedule::job(new ScrubUnsubscribesJob())->daily();
3 changes: 1 addition & 2 deletions tests/Feature/AuthenticationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

namespace Tests\Feature;

use App\Providers\AppServiceProvider;
use App\Models\User;
use App\Providers\RouteServiceProvider;
use App\Providers\AppServiceProvider;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;

Expand Down

0 comments on commit 4970ea6

Please sign in to comment.