Skip to content

Commit 8dafd67

Browse files
authored
Merge pull request #47 from cybercog/refactor/all-classes-final
Making all classes final
2 parents 48dcb65 + 30d8805 commit 8dafd67

File tree

123 files changed

+543
-123
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+543
-123
lines changed

src/Scopes/Classic/AcceptedAtScope.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
use Illuminate\Database\Eloquent\Scope;
1919
use Illuminate\Support\Carbon;
2020

21-
class AcceptedAtScope implements Scope
21+
final class AcceptedAtScope implements Scope
2222
{
2323
/**
2424
* All of the extensions to be added to the builder.

src/Scopes/Classic/AcceptedFlagScope.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use Illuminate\Database\Eloquent\Model;
1818
use Illuminate\Database\Eloquent\Scope;
1919

20-
class AcceptedFlagScope implements Scope
20+
final class AcceptedFlagScope implements Scope
2121
{
2222
/**
2323
* All of the extensions to be added to the builder.

src/Scopes/Classic/ActiveFlagScope.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use Illuminate\Database\Eloquent\Model;
1818
use Illuminate\Database\Eloquent\Scope;
1919

20-
class ActiveFlagScope implements Scope
20+
final class ActiveFlagScope implements Scope
2121
{
2222
/**
2323
* All of the extensions to be added to the builder.

src/Scopes/Classic/ApprovedAtScope.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
use Illuminate\Database\Eloquent\Scope;
1919
use Illuminate\Support\Carbon;
2020

21-
class ApprovedAtScope implements Scope
21+
final class ApprovedAtScope implements Scope
2222
{
2323
/**
2424
* All of the extensions to be added to the builder.

src/Scopes/Classic/ApprovedFlagScope.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use Illuminate\Database\Eloquent\Model;
1818
use Illuminate\Database\Eloquent\Scope;
1919

20-
class ApprovedFlagScope implements Scope
20+
final class ApprovedFlagScope implements Scope
2121
{
2222
/**
2323
* All of the extensions to be added to the builder.

src/Scopes/Classic/InvitedAtScope.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
use Illuminate\Database\Eloquent\Scope;
1919
use Illuminate\Support\Carbon;
2020

21-
class InvitedAtScope implements Scope
21+
final class InvitedAtScope implements Scope
2222
{
2323
/**
2424
* All of the extensions to be added to the builder.

src/Scopes/Classic/InvitedFlagScope.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use Illuminate\Database\Eloquent\Model;
1818
use Illuminate\Database\Eloquent\Scope;
1919

20-
class InvitedFlagScope implements Scope
20+
final class InvitedFlagScope implements Scope
2121
{
2222
/**
2323
* All of the extensions to be added to the builder.

src/Scopes/Classic/KeptFlagScope.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use Illuminate\Database\Eloquent\Model;
1818
use Illuminate\Database\Eloquent\Scope;
1919

20-
class KeptFlagScope implements Scope
20+
final class KeptFlagScope implements Scope
2121
{
2222
/**
2323
* All of the extensions to be added to the builder.

src/Scopes/Classic/PublishedAtScope.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
use Illuminate\Database\Eloquent\Scope;
1919
use Illuminate\Support\Carbon;
2020

21-
class PublishedAtScope implements Scope
21+
final class PublishedAtScope implements Scope
2222
{
2323
/**
2424
* All of the extensions to be added to the builder.

src/Scopes/Classic/PublishedFlagScope.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use Illuminate\Database\Eloquent\Model;
1818
use Illuminate\Database\Eloquent\Scope;
1919

20-
class PublishedFlagScope implements Scope
20+
final class PublishedFlagScope implements Scope
2121
{
2222
/**
2323
* All of the extensions to be added to the builder.

0 commit comments

Comments
 (0)