Skip to content

Commit bb6b55d

Browse files
committed
Add final to classes
1 parent 3b5db3f commit bb6b55d

30 files changed

+30
-30
lines changed

app/Jobs/BanUser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use App\User;
66
use Carbon\Carbon;
77

8-
class BanUser
8+
final class BanUser
99
{
1010
/**
1111
* @var \App\User

app/Jobs/ConfirmUser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use App\User;
66

7-
class ConfirmUser
7+
final class ConfirmUser
88
{
99
/**
1010
* @var \App\User

app/Jobs/CreateReply.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use App\Models\ReplyAble;
88
use App\Http\Requests\CreateReplyRequest;
99

10-
class CreateReply
10+
final class CreateReply
1111
{
1212
/**
1313
* @var string

app/Jobs/CreateThread.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use App\Models\Thread;
77
use App\Http\Requests\ThreadRequest;
88

9-
class CreateThread
9+
final class CreateThread
1010
{
1111
/**
1212
* @var string

app/Jobs/DeleteReply.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use App\Models\Reply;
66

7-
class DeleteReply
7+
final class DeleteReply
88
{
99
/**
1010
* @var \App\Models\Reply

app/Jobs/DeleteThread.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use App\Models\Thread;
66

7-
class DeleteThread
7+
final class DeleteThread
88
{
99
/**
1010
* @var \App\Models\Thread

app/Jobs/DeleteUser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use App\User;
66

7-
class DeleteUser
7+
final class DeleteUser
88
{
99
/**
1010
* @var \App\User

app/Jobs/MarkThreadSolution.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use App\Models\Reply;
66
use App\Models\Thread;
77

8-
class MarkThreadSolution
8+
final class MarkThreadSolution
99
{
1010
/**
1111
* @var \App\Models\Thread

app/Jobs/RegisterUser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use App\Http\Requests\RegisterRequest;
88
use Illuminate\Database\Eloquent\ModelNotFoundException;
99

10-
class RegisterUser
10+
final class RegisterUser
1111
{
1212
/**
1313
* @var string

app/Jobs/SendEmailConfirmation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Illuminate\Contracts\Mail\Mailer;
88
use Illuminate\Queue\SerializesModels;
99

10-
class SendEmailConfirmation
10+
final class SendEmailConfirmation
1111
{
1212
use SerializesModels;
1313

0 commit comments

Comments
 (0)