Skip to content

Commit 2ee6928

Browse files
committed
Define test classes as final
1 parent 50d6750 commit 2ee6928

73 files changed

Lines changed: 73 additions & 73 deletions

File tree

Some content is hidden

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

tests/Actions/ActionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Cone\Root\Tests\TestCase;
1010
use Cone\Root\Tests\User;
1111

12-
class ActionTest extends TestCase
12+
final class ActionTest extends TestCase
1313
{
1414
protected SendNotification $action;
1515

tests/Actions/SendPasswordResetNotificationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Illuminate\Auth\Notifications\ResetPassword;
1111
use Illuminate\Support\Facades\Notification;
1212

13-
class SendPasswordResetNotificationTest extends TestCase
13+
final class SendPasswordResetNotificationTest extends TestCase
1414
{
1515
public function test_send_password_reset_notifications_action(): void
1616
{

tests/Actions/SendVerificationNotificationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Illuminate\Auth\Notifications\VerifyEmail;
1111
use Illuminate\Support\Facades\Notification;
1212

13-
class SendVerificationNotificationTest extends TestCase
13+
final class SendVerificationNotificationTest extends TestCase
1414
{
1515
public function test_send_verification_notifications_action(): void
1616
{

tests/Breadcrumbs/RegistryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Illuminate\Http\Request;
1010
use Illuminate\Routing\Route;
1111

12-
class RegistryTest extends TestCase
12+
final class RegistryTest extends TestCase
1313
{
1414
protected Registry $registry;
1515

tests/Console/ActionMakeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Illuminate\Console\Command;
99
use Illuminate\Support\Facades\File;
1010

11-
class ActionMakeTest extends TestCase
11+
final class ActionMakeTest extends TestCase
1212
{
1313
public function test_action_make_command(): void
1414
{

tests/Console/ClearChunkTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Illuminate\Http\UploadedFile;
1010
use Illuminate\Support\Facades\Storage;
1111

12-
class ClearChunkTest extends TestCase
12+
final class ClearChunkTest extends TestCase
1313
{
1414
public function test_clear_chunk_command(): void
1515
{

tests/Console/ClearMediaTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Cone\Root\Tests\TestCase;
99
use Illuminate\Console\Command;
1010

11-
class ClearMediaTest extends TestCase
11+
final class ClearMediaTest extends TestCase
1212
{
1313
public function test_clear_media_command(): void
1414
{

tests/Console/FieldMakeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Illuminate\Console\Command;
99
use Illuminate\Support\Facades\File;
1010

11-
class FieldMakeTest extends TestCase
11+
final class FieldMakeTest extends TestCase
1212
{
1313
public function test_field_make_command(): void
1414
{

tests/Console/FilterMakeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Illuminate\Console\Command;
99
use Illuminate\Support\Facades\File;
1010

11-
class FilterMakeTest extends TestCase
11+
final class FilterMakeTest extends TestCase
1212
{
1313
public function test_filter_make_command(): void
1414
{

tests/Console/InstallTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Illuminate\Console\Command;
99
use Illuminate\Support\Facades\File;
1010

11-
class InstallTest extends TestCase
11+
final class InstallTest extends TestCase
1212
{
1313
public function test_install_command(): void
1414
{

0 commit comments

Comments
 (0)