Skip to content

Commit f328c57

Browse files
committed
Shift cleanup
1 parent 89258b6 commit f328c57

14 files changed

+37
-57
lines changed

app/Models/Like.php

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ class Like extends Model
3333
use Auditable;
3434
use HasFactory;
3535

36-
3736
/**
3837
* Get the attributes that should be cast.
3938
*

app/Models/Peer.php

-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ class Peer extends Model
4040
{
4141
use HasFactory;
4242

43-
4443
/**
4544
* Get the attributes that should be cast.
4645
*

app/Providers/AppServiceProvider.php

-2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,5 @@ public function bootRoute(): void
117117
RateLimiter::for('announce', fn (Request $request) => Limit::perMinute(500)->by('announce'.$request->ip()));
118118
RateLimiter::for('chat', fn (Request $request) => Limit::perMinute(60)->by('chat'.($request->user()?->id ?? $request->ip())));
119119
RateLimiter::for('rss', fn (Request $request) => Limit::perMinute(30)->by('rss'.$request->ip()));
120-
121-
122120
}
123121
}

bootstrap/app.php

+29-29
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
use Illuminate\Foundation\Configuration\Exceptions;
66
use Illuminate\Foundation\Configuration\Middleware;
77

8-
return Application::configure(basePath: dirname(__DIR__))
8+
return Application::configure(basePath: \dirname(__DIR__))
99
->withProviders([
10-
\Assada\Achievements\AchievementsServiceProvider::class,
11-
\Spatie\CookieConsent\CookieConsentServiceProvider::class,
12-
\Intervention\Image\ImageServiceProvider::class,
13-
\App\Providers\FortifyServiceProvider::class,
10+
Assada\Achievements\AchievementsServiceProvider::class,
11+
Spatie\CookieConsent\CookieConsentServiceProvider::class,
12+
Intervention\Image\ImageServiceProvider::class,
13+
App\Providers\FortifyServiceProvider::class,
1414
])
1515
->withRouting(
1616
web: __DIR__.'/../routes/web.php',
@@ -19,33 +19,33 @@
1919
channels: __DIR__.'/../routes/channels.php',
2020
health: '/up',
2121
)
22-
->withMiddleware(function (Middleware $middleware) {
22+
->withMiddleware(function (Middleware $middleware): void {
2323
$middleware->redirectGuestsTo(fn () => route('login'));
2424
$middleware->redirectUsersTo(AppServiceProvider::HOME);
2525

2626
$middleware->throttleWithRedis();
2727

28-
$middleware->append(\App\Http\Middleware\BlockIpAddress::class);
28+
$middleware->append(App\Http\Middleware\BlockIpAddress::class);
2929

3030
$middleware->web([
31-
\Illuminate\Session\Middleware\AuthenticateSession::class,
32-
\App\Http\Middleware\UpdateLastAction::class,
33-
\HDVinnie\SecureHeaders\SecureHeadersMiddleware::class,
31+
Illuminate\Session\Middleware\AuthenticateSession::class,
32+
App\Http\Middleware\UpdateLastAction::class,
33+
HDVinnie\SecureHeaders\SecureHeadersMiddleware::class,
3434
'throttle:web',
3535
]);
3636

3737
$middleware->api('throttle:api');
3838

3939
$middleware->group('chat', [
40-
\App\Http\Middleware\EncryptCookies::class,
41-
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
42-
\Illuminate\Session\Middleware\StartSession::class,
43-
\Illuminate\Session\Middleware\AuthenticateSession::class,
44-
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
45-
\Illuminate\Routing\Middleware\SubstituteBindings::class,
46-
\App\Http\Middleware\VerifyCsrfToken::class,
47-
\App\Http\Middleware\UpdateLastAction::class,
48-
\HDVinnie\SecureHeaders\SecureHeadersMiddleware::class,
40+
App\Http\Middleware\EncryptCookies::class,
41+
Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
42+
Illuminate\Session\Middleware\StartSession::class,
43+
Illuminate\Session\Middleware\AuthenticateSession::class,
44+
Illuminate\View\Middleware\ShareErrorsFromSession::class,
45+
Illuminate\Routing\Middleware\SubstituteBindings::class,
46+
App\Http\Middleware\VerifyCsrfToken::class,
47+
App\Http\Middleware\UpdateLastAction::class,
48+
HDVinnie\SecureHeaders\SecureHeadersMiddleware::class,
4949
'throttle:chat',
5050
]);
5151

@@ -57,21 +57,21 @@
5757
'throttle:rss',
5858
]);
5959

60-
$middleware->replace(\Illuminate\Foundation\Http\Middleware\TrimStrings::class, \App\Http\Middleware\TrimStrings::class);
61-
$middleware->replace(\Illuminate\Http\Middleware\TrustProxies::class, \App\Http\Middleware\TrustProxies::class);
60+
$middleware->replace(Illuminate\Foundation\Http\Middleware\TrimStrings::class, App\Http\Middleware\TrimStrings::class);
61+
$middleware->replace(Illuminate\Http\Middleware\TrustProxies::class, App\Http\Middleware\TrustProxies::class);
6262

6363
$middleware->alias([
64-
'admin' => \App\Http\Middleware\CheckForAdmin::class,
65-
'banned' => \App\Http\Middleware\CheckIfBanned::class,
66-
'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class,
67-
'language' => \App\Http\Middleware\SetLanguage::class,
68-
'modo' => \App\Http\Middleware\CheckForModo::class,
69-
'owner' => \App\Http\Middleware\CheckForOwner::class,
64+
'admin' => App\Http\Middleware\CheckForAdmin::class,
65+
'banned' => App\Http\Middleware\CheckIfBanned::class,
66+
'bindings' => Illuminate\Routing\Middleware\SubstituteBindings::class,
67+
'language' => App\Http\Middleware\SetLanguage::class,
68+
'modo' => App\Http\Middleware\CheckForModo::class,
69+
'owner' => App\Http\Middleware\CheckForOwner::class,
7070
]);
7171
})
72-
->withExceptions(function (Exceptions $exceptions) {
72+
->withExceptions(function (Exceptions $exceptions): void {
7373
$exceptions->dontReport([
74-
\Illuminate\Queue\MaxAttemptsExceededException::class,
74+
Illuminate\Queue\MaxAttemptsExceededException::class,
7575
]);
7676

7777
$exceptions->reportable(function (Throwable $e): void {

config/app.php

-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22

3-
use Illuminate\Support\ServiceProvider;
43
use Illuminate\Support\Facades\Facade;
54

65
/**
@@ -16,15 +15,12 @@
1615
*/
1716

1817
return [
19-
2018
'meta_locale' => 'en_US',
2119

22-
2320
'aliases' => Facade::defaultAliases()->merge([
2421
'CacheUser' => App\Helpers\CacheUser::class,
2522
'Image' => Intervention\Image\Facades\Image::class,
2623
'Irc' => App\Bots\IRCAnnounceBot::class,
2724
'Redis' => Illuminate\Support\Facades\Redis::class,
2825
])->toArray(),
29-
3026
];

config/auth.php

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

33
return [
4-
54
'guards' => [
65
'api' => [
76
'driver' => 'token',
@@ -20,5 +19,4 @@
2019
'verification' => [
2120
'expire' => 1440,
2221
],
23-
2422
];

config/database.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

33
return [
4-
54
'connections' => [
65
'mysql' => [
76
'driver' => 'mysql',
@@ -31,7 +30,7 @@
3130
],
3231

3332
'migrations' => [
34-
'table' => 'migrations',
33+
'table' => 'migrations',
3534
'update_date_on_publish' => false, // disable to preserve original behavior for existing applications
3635
],
3736

@@ -98,5 +97,4 @@
9897
],
9998

10099
'pristine-db-file' => env('PRISTINE_DB_FILE'),
101-
102100
];

config/filesystems.php

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

33
return [
4-
54
'disks' => [
65
'ftp' => [
76
'driver' => 'ftp',
@@ -53,5 +52,4 @@
5352
'root' => public_path('files/attachments'),
5453
],
5554
],
56-
5755
];

config/fortify.php

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

33
use App\Providers\AppServiceProvider;
4-
use App\Providers\RouteServiceProvider;
54
use Laravel\Fortify\Features;
65

76
return [

config/mail.php

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

33
return [
4-
54
'mailers' => [
65
'mailgun' => [
76
'transport' => 'mailgun',
@@ -10,5 +9,4 @@
109
// ],
1110
],
1211
],
13-
1412
];

config/services.php

-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
<?php
22

33
return [
4-
54
'mailgun' => [
65
'domain' => env('MAILGUN_DOMAIN'),
76
'secret' => env('MAILGUN_SECRET'),
87
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
98
'scheme' => 'https',
109
],
11-
1210
];

database/migrations/2022_01_23_232931_update_comments_table.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,42 +21,42 @@ public function up(): void
2121
->whereNotNull('torrent_id')
2222
->update([
2323
'commentable_id' => DB::raw('torrent_id'),
24-
'commentable_type' => \App\Models\Torrent::class,
24+
'commentable_type' => App\Models\Torrent::class,
2525
]);
2626

2727
DB::table('comments')
2828
->whereNotNull('article_id')
2929
->update([
3030
'commentable_id' => DB::raw('article_id'),
31-
'commentable_type' => \App\Models\Article::class,
31+
'commentable_type' => App\Models\Article::class,
3232
]);
3333

3434
DB::table('comments')
3535
->whereNotNull('requests_id')
3636
->update([
3737
'commentable_id' => DB::raw('requests_id'),
38-
'commentable_type' => \App\Models\TorrentRequest::class,
38+
'commentable_type' => App\Models\TorrentRequest::class,
3939
]);
4040

4141
DB::table('comments')
4242
->whereNotNull('collection_id')
4343
->update([
4444
'commentable_id' => DB::raw('collection_id'),
45-
'commentable_type' => \App\Models\Collection::class,
45+
'commentable_type' => App\Models\Collection::class,
4646
]);
4747

4848
DB::table('comments')
4949
->whereNotNull('playlist_id')
5050
->update([
5151
'commentable_id' => DB::raw('playlist_id'),
52-
'commentable_type' => \App\Models\Playlist::class,
52+
'commentable_type' => App\Models\Playlist::class,
5353
]);
5454

5555
DB::table('comments')
5656
->whereNotNull('ticket_id')
5757
->update([
5858
'commentable_id' => DB::raw('ticket_id'),
59-
'commentable_type' => \App\Models\Ticket::class,
59+
'commentable_type' => App\Models\Ticket::class,
6060
]);
6161

6262
Schema::table('comments', function (Blueprint $table): void {

public/index.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
use Illuminate\Http\Request;
44

5-
define('LARAVEL_START', microtime(true));
5+
\define('LARAVEL_START', microtime(true));
66

77
// Determine if the application is in maintenance mode...
88
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {

routes/console.php

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
$this->comment(Inspiring::quote());
3030
})->purpose('Display an inspiring quote');
3131

32-
3332
Schedule::command('auto:upsert_peers')->everyFiveSeconds();
3433
Schedule::command('auto:upsert_histories')->everyFiveSeconds();
3534
Schedule::command('auto:upsert_announces')->everyFiveSeconds();

0 commit comments

Comments
 (0)