diff --git a/tests/Actions/ActionTest.php b/tests/Actions/ActionTest.php index 2e86469d..745b59b1 100644 --- a/tests/Actions/ActionTest.php +++ b/tests/Actions/ActionTest.php @@ -9,7 +9,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class ActionTest extends TestCase +final class ActionTest extends TestCase { protected SendNotification $action; diff --git a/tests/Actions/SendPasswordResetNotificationTest.php b/tests/Actions/SendPasswordResetNotificationTest.php index ff25f650..683e4dbd 100644 --- a/tests/Actions/SendPasswordResetNotificationTest.php +++ b/tests/Actions/SendPasswordResetNotificationTest.php @@ -10,7 +10,7 @@ use Illuminate\Auth\Notifications\ResetPassword; use Illuminate\Support\Facades\Notification; -class SendPasswordResetNotificationTest extends TestCase +final class SendPasswordResetNotificationTest extends TestCase { public function test_send_password_reset_notifications_action(): void { diff --git a/tests/Actions/SendVerificationNotificationTest.php b/tests/Actions/SendVerificationNotificationTest.php index 72b0d058..c78bb3ba 100644 --- a/tests/Actions/SendVerificationNotificationTest.php +++ b/tests/Actions/SendVerificationNotificationTest.php @@ -10,7 +10,7 @@ use Illuminate\Auth\Notifications\VerifyEmail; use Illuminate\Support\Facades\Notification; -class SendVerificationNotificationTest extends TestCase +final class SendVerificationNotificationTest extends TestCase { public function test_send_verification_notifications_action(): void { diff --git a/tests/Breadcrumbs/RegistryTest.php b/tests/Breadcrumbs/RegistryTest.php index ed761f77..8570dce2 100644 --- a/tests/Breadcrumbs/RegistryTest.php +++ b/tests/Breadcrumbs/RegistryTest.php @@ -9,7 +9,7 @@ use Illuminate\Http\Request; use Illuminate\Routing\Route; -class RegistryTest extends TestCase +final class RegistryTest extends TestCase { protected Registry $registry; diff --git a/tests/Console/ActionMakeTest.php b/tests/Console/ActionMakeTest.php index bf6bf6bd..b91c3aaf 100644 --- a/tests/Console/ActionMakeTest.php +++ b/tests/Console/ActionMakeTest.php @@ -8,7 +8,7 @@ use Illuminate\Console\Command; use Illuminate\Support\Facades\File; -class ActionMakeTest extends TestCase +final class ActionMakeTest extends TestCase { public function test_action_make_command(): void { diff --git a/tests/Console/ClearChunkTest.php b/tests/Console/ClearChunkTest.php index d26c5e30..5ae3ab0b 100644 --- a/tests/Console/ClearChunkTest.php +++ b/tests/Console/ClearChunkTest.php @@ -9,7 +9,7 @@ use Illuminate\Http\UploadedFile; use Illuminate\Support\Facades\Storage; -class ClearChunkTest extends TestCase +final class ClearChunkTest extends TestCase { public function test_clear_chunk_command(): void { diff --git a/tests/Console/ClearMediaTest.php b/tests/Console/ClearMediaTest.php index f7f623c2..f965cdae 100644 --- a/tests/Console/ClearMediaTest.php +++ b/tests/Console/ClearMediaTest.php @@ -8,7 +8,7 @@ use Cone\Root\Tests\TestCase; use Illuminate\Console\Command; -class ClearMediaTest extends TestCase +final class ClearMediaTest extends TestCase { public function test_clear_media_command(): void { diff --git a/tests/Console/FieldMakeTest.php b/tests/Console/FieldMakeTest.php index acdce45b..9f44fef9 100644 --- a/tests/Console/FieldMakeTest.php +++ b/tests/Console/FieldMakeTest.php @@ -8,7 +8,7 @@ use Illuminate\Console\Command; use Illuminate\Support\Facades\File; -class FieldMakeTest extends TestCase +final class FieldMakeTest extends TestCase { public function test_field_make_command(): void { diff --git a/tests/Console/FilterMakeTest.php b/tests/Console/FilterMakeTest.php index b02409e5..31557e7f 100644 --- a/tests/Console/FilterMakeTest.php +++ b/tests/Console/FilterMakeTest.php @@ -8,7 +8,7 @@ use Illuminate\Console\Command; use Illuminate\Support\Facades\File; -class FilterMakeTest extends TestCase +final class FilterMakeTest extends TestCase { public function test_filter_make_command(): void { diff --git a/tests/Console/InstallTest.php b/tests/Console/InstallTest.php index 1786c947..bf6ee826 100644 --- a/tests/Console/InstallTest.php +++ b/tests/Console/InstallTest.php @@ -8,7 +8,7 @@ use Illuminate\Console\Command; use Illuminate\Support\Facades\File; -class InstallTest extends TestCase +final class InstallTest extends TestCase { public function test_install_command(): void { diff --git a/tests/Console/PublishTest.php b/tests/Console/PublishTest.php index 29ab7f30..d5eae45a 100644 --- a/tests/Console/PublishTest.php +++ b/tests/Console/PublishTest.php @@ -8,7 +8,7 @@ use Illuminate\Console\Command; use Illuminate\Support\Facades\File; -class PublishTest extends TestCase +final class PublishTest extends TestCase { public function test_publish_command(): void { diff --git a/tests/Console/ResourceMakeTest.php b/tests/Console/ResourceMakeTest.php index 0ab9b96d..6189426c 100644 --- a/tests/Console/ResourceMakeTest.php +++ b/tests/Console/ResourceMakeTest.php @@ -8,7 +8,7 @@ use Illuminate\Console\Command; use Illuminate\Support\Facades\File; -class ResourceMakeTest extends TestCase +final class ResourceMakeTest extends TestCase { public function test_resource_make_command(): void { diff --git a/tests/Console/TrendMakeTest.php b/tests/Console/TrendMakeTest.php index 5f11c058..b8261df5 100644 --- a/tests/Console/TrendMakeTest.php +++ b/tests/Console/TrendMakeTest.php @@ -8,7 +8,7 @@ use Illuminate\Console\Command; use Illuminate\Support\Facades\File; -class TrendMakeTest extends TestCase +final class TrendMakeTest extends TestCase { public function test_trend_make_command(): void { diff --git a/tests/Console/ValueMakeTest.php b/tests/Console/ValueMakeTest.php index e5198756..c173b2a4 100644 --- a/tests/Console/ValueMakeTest.php +++ b/tests/Console/ValueMakeTest.php @@ -8,7 +8,7 @@ use Illuminate\Console\Command; use Illuminate\Support\Facades\File; -class ValueMakeTest extends TestCase +final class ValueMakeTest extends TestCase { public function test_value_make_command(): void { diff --git a/tests/Console/WidgetMakeTest.php b/tests/Console/WidgetMakeTest.php index a8cdc649..29ade515 100644 --- a/tests/Console/WidgetMakeTest.php +++ b/tests/Console/WidgetMakeTest.php @@ -8,7 +8,7 @@ use Illuminate\Console\Command; use Illuminate\Support\Facades\File; -class WidgetMakeTest extends TestCase +final class WidgetMakeTest extends TestCase { public function test_widget_make_command(): void { diff --git a/tests/Conversion/ConversionDriverTest.php b/tests/Conversion/ConversionDriverTest.php index f6b267f5..b2ec582a 100644 --- a/tests/Conversion/ConversionDriverTest.php +++ b/tests/Conversion/ConversionDriverTest.php @@ -12,7 +12,7 @@ use Illuminate\Support\Facades\File; use Illuminate\Support\Facades\Storage; -class ConversionDriverTest extends TestCase +final class ConversionDriverTest extends TestCase { protected Manager $manager; diff --git a/tests/Conversion/ImageTest.php b/tests/Conversion/ImageTest.php index 5c7c2d99..11232e9e 100644 --- a/tests/Conversion/ImageTest.php +++ b/tests/Conversion/ImageTest.php @@ -9,7 +9,7 @@ use Cone\Root\Tests\TestCase; use Illuminate\Support\Facades\Storage; -class ImageTest extends TestCase +final class ImageTest extends TestCase { public function test_jpeg_can_be_converted(): void { diff --git a/tests/Fields/BelongsToTest.php b/tests/Fields/BelongsToTest.php index e98aa7e9..5aa480c5 100644 --- a/tests/Fields/BelongsToTest.php +++ b/tests/Fields/BelongsToTest.php @@ -9,7 +9,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class BelongsToTest extends TestCase +final class BelongsToTest extends TestCase { protected BelongsTo $field; diff --git a/tests/Fields/BooleanTest.php b/tests/Fields/BooleanTest.php index e4c16714..62cf83cd 100644 --- a/tests/Fields/BooleanTest.php +++ b/tests/Fields/BooleanTest.php @@ -9,7 +9,7 @@ use Cone\Root\Tests\TestCase; use Illuminate\Http\Request; -class BooleanTest extends TestCase +final class BooleanTest extends TestCase { protected Boolean $field; diff --git a/tests/Fields/CheckboxTest.php b/tests/Fields/CheckboxTest.php index 3ff89c57..8365b9fe 100644 --- a/tests/Fields/CheckboxTest.php +++ b/tests/Fields/CheckboxTest.php @@ -7,7 +7,7 @@ use Cone\Root\Fields\Checkbox; use Cone\Root\Tests\TestCase; -class CheckboxTest extends TestCase +final class CheckboxTest extends TestCase { protected Checkbox $field; diff --git a/tests/Fields/ColorTest.php b/tests/Fields/ColorTest.php index 07e56cc4..f51347b3 100644 --- a/tests/Fields/ColorTest.php +++ b/tests/Fields/ColorTest.php @@ -7,7 +7,7 @@ use Cone\Root\Fields\Color; use Cone\Root\Tests\TestCase; -class ColorTest extends TestCase +final class ColorTest extends TestCase { protected Color $field; diff --git a/tests/Fields/DateTest.php b/tests/Fields/DateTest.php index 362e84ff..19c9f967 100644 --- a/tests/Fields/DateTest.php +++ b/tests/Fields/DateTest.php @@ -9,7 +9,7 @@ use Cone\Root\Tests\User; use Illuminate\Support\Facades\Date as DateFactory; -class DateTest extends TestCase +final class DateTest extends TestCase { protected Date $field; diff --git a/tests/Fields/DropdownTest.php b/tests/Fields/DropdownTest.php index 4506f3bc..0d768314 100644 --- a/tests/Fields/DropdownTest.php +++ b/tests/Fields/DropdownTest.php @@ -7,7 +7,7 @@ use Cone\Root\Fields\Dropdown; use Cone\Root\Tests\TestCase; -class DropdownTest extends TestCase +final class DropdownTest extends TestCase { protected Dropdown $field; diff --git a/tests/Fields/EditorTest.php b/tests/Fields/EditorTest.php index dc8808a1..58021ab1 100644 --- a/tests/Fields/EditorTest.php +++ b/tests/Fields/EditorTest.php @@ -7,7 +7,7 @@ use Cone\Root\Fields\Editor; use Cone\Root\Tests\TestCase; -class EditorTest extends TestCase +final class EditorTest extends TestCase { protected Editor $field; diff --git a/tests/Fields/EmailTest.php b/tests/Fields/EmailTest.php index 2a4f76a9..ba27e9a4 100644 --- a/tests/Fields/EmailTest.php +++ b/tests/Fields/EmailTest.php @@ -7,7 +7,7 @@ use Cone\Root\Fields\Email; use Cone\Root\Tests\TestCase; -class EmailTest extends TestCase +final class EmailTest extends TestCase { protected Email $field; diff --git a/tests/Fields/FieldTest.php b/tests/Fields/FieldTest.php index 9ab05896..78c0e5f2 100644 --- a/tests/Fields/FieldTest.php +++ b/tests/Fields/FieldTest.php @@ -9,7 +9,7 @@ use Cone\Root\Tests\TestCase; use Illuminate\Database\Eloquent\Model; -class FieldTest extends TestCase +final class FieldTest extends TestCase { protected Field $field; diff --git a/tests/Fields/FieldsetTest.php b/tests/Fields/FieldsetTest.php index 5baec708..96071c81 100644 --- a/tests/Fields/FieldsetTest.php +++ b/tests/Fields/FieldsetTest.php @@ -8,7 +8,7 @@ use Cone\Root\Fields\Text; use Cone\Root\Tests\TestCase; -class FieldsetTest extends TestCase +final class FieldsetTest extends TestCase { protected Fieldset $field; diff --git a/tests/Fields/FileTest.php b/tests/Fields/FileTest.php index fc652360..41ffc9df 100644 --- a/tests/Fields/FileTest.php +++ b/tests/Fields/FileTest.php @@ -9,7 +9,7 @@ use Cone\Root\Tests\User; use Illuminate\Http\UploadedFile; -class FileTest extends TestCase +final class FileTest extends TestCase { protected File $field; diff --git a/tests/Fields/HasManyTest.php b/tests/Fields/HasManyTest.php index f294c4eb..7d82611a 100644 --- a/tests/Fields/HasManyTest.php +++ b/tests/Fields/HasManyTest.php @@ -9,7 +9,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class HasManyTest extends TestCase +final class HasManyTest extends TestCase { protected HasMany $field; diff --git a/tests/Fields/HasOneTest.php b/tests/Fields/HasOneTest.php index da11c990..5505465f 100644 --- a/tests/Fields/HasOneTest.php +++ b/tests/Fields/HasOneTest.php @@ -9,7 +9,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class HasOneTest extends TestCase +final class HasOneTest extends TestCase { protected HasOne $field; diff --git a/tests/Fields/HiddenTest.php b/tests/Fields/HiddenTest.php index 9af97e44..1a9fc69f 100644 --- a/tests/Fields/HiddenTest.php +++ b/tests/Fields/HiddenTest.php @@ -7,7 +7,7 @@ use Cone\Root\Fields\Hidden; use Cone\Root\Tests\TestCase; -class HiddenTest extends TestCase +final class HiddenTest extends TestCase { protected Hidden $field; diff --git a/tests/Fields/IDTest.php b/tests/Fields/IDTest.php index 476fd388..6b70e2bb 100644 --- a/tests/Fields/IDTest.php +++ b/tests/Fields/IDTest.php @@ -7,7 +7,7 @@ use Cone\Root\Fields\ID; use Cone\Root\Tests\TestCase; -class IDTest extends TestCase +final class IDTest extends TestCase { protected ID $field; diff --git a/tests/Fields/MetaTest.php b/tests/Fields/MetaTest.php index f7dff15a..8c847c72 100644 --- a/tests/Fields/MetaTest.php +++ b/tests/Fields/MetaTest.php @@ -10,7 +10,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class MetaTest extends TestCase +final class MetaTest extends TestCase { protected Meta $field; diff --git a/tests/Fields/NumberTest.php b/tests/Fields/NumberTest.php index d69423f3..030bbea8 100644 --- a/tests/Fields/NumberTest.php +++ b/tests/Fields/NumberTest.php @@ -7,7 +7,7 @@ use Cone\Root\Fields\Number; use Cone\Root\Tests\TestCase; -class NumberTest extends TestCase +final class NumberTest extends TestCase { protected Number $field; diff --git a/tests/Fields/RadioTest.php b/tests/Fields/RadioTest.php index 750c4328..a301f789 100644 --- a/tests/Fields/RadioTest.php +++ b/tests/Fields/RadioTest.php @@ -7,7 +7,7 @@ use Cone\Root\Fields\Radio; use Cone\Root\Tests\TestCase; -class RadioTest extends TestCase +final class RadioTest extends TestCase { protected Radio $field; diff --git a/tests/Fields/RangeTest.php b/tests/Fields/RangeTest.php index 8ca1d97e..65e25eb7 100644 --- a/tests/Fields/RangeTest.php +++ b/tests/Fields/RangeTest.php @@ -7,7 +7,7 @@ use Cone\Root\Fields\Range; use Cone\Root\Tests\TestCase; -class RangeTest extends TestCase +final class RangeTest extends TestCase { protected Range $field; diff --git a/tests/Fields/RepeaterTest.php b/tests/Fields/RepeaterTest.php index f96f870a..d694e146 100644 --- a/tests/Fields/RepeaterTest.php +++ b/tests/Fields/RepeaterTest.php @@ -8,7 +8,7 @@ use Cone\Root\Fields\Text; use Cone\Root\Tests\TestCase; -class RepeaterTest extends TestCase +final class RepeaterTest extends TestCase { protected Repeater $field; diff --git a/tests/Fields/SelectTest.php b/tests/Fields/SelectTest.php index 1a8ab711..488e0a39 100644 --- a/tests/Fields/SelectTest.php +++ b/tests/Fields/SelectTest.php @@ -8,7 +8,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class SelectTest extends TestCase +final class SelectTest extends TestCase { protected Select $field; diff --git a/tests/Fields/SlugTest.php b/tests/Fields/SlugTest.php index e0189043..418c0574 100644 --- a/tests/Fields/SlugTest.php +++ b/tests/Fields/SlugTest.php @@ -8,7 +8,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class SlugTest extends TestCase +final class SlugTest extends TestCase { protected Slug $field; diff --git a/tests/Fields/TextTest.php b/tests/Fields/TextTest.php index 76d619c3..7e5d2d5d 100644 --- a/tests/Fields/TextTest.php +++ b/tests/Fields/TextTest.php @@ -7,7 +7,7 @@ use Cone\Root\Fields\Text; use Cone\Root\Tests\TestCase; -class TextTest extends TestCase +final class TextTest extends TestCase { protected Text $field; diff --git a/tests/Fields/TextareaTest.php b/tests/Fields/TextareaTest.php index 98bfb296..92424bbf 100644 --- a/tests/Fields/TextareaTest.php +++ b/tests/Fields/TextareaTest.php @@ -7,7 +7,7 @@ use Cone\Root\Fields\Textarea; use Cone\Root\Tests\TestCase; -class TextareaTest extends TestCase +final class TextareaTest extends TestCase { protected Textarea $field; diff --git a/tests/Fields/URLTest.php b/tests/Fields/URLTest.php index d6b60f5c..71d1b48d 100644 --- a/tests/Fields/URLTest.php +++ b/tests/Fields/URLTest.php @@ -8,7 +8,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class URLTest extends TestCase +final class URLTest extends TestCase { protected URL $field; diff --git a/tests/Filters/FilterTest.php b/tests/Filters/FilterTest.php index 43d423b2..a9e38182 100644 --- a/tests/Filters/FilterTest.php +++ b/tests/Filters/FilterTest.php @@ -9,7 +9,7 @@ use Illuminate\Database\Eloquent\Builder; use Illuminate\Http\Request; -class FilterTest extends TestCase +final class FilterTest extends TestCase { protected Filter $filter; diff --git a/tests/Filters/MediaSearchTest.php b/tests/Filters/MediaSearchTest.php index da237066..d81fe85f 100644 --- a/tests/Filters/MediaSearchTest.php +++ b/tests/Filters/MediaSearchTest.php @@ -7,7 +7,7 @@ use Cone\Root\Filters\MediaSearch; use Cone\Root\Tests\TestCase; -class MediaSearchTest extends TestCase +final class MediaSearchTest extends TestCase { public function test_a_media_search_has_searchable_attributes(): void { diff --git a/tests/Filters/SearchTest.php b/tests/Filters/SearchTest.php index 8441946b..d37cccca 100644 --- a/tests/Filters/SearchTest.php +++ b/tests/Filters/SearchTest.php @@ -11,7 +11,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class SearchTest extends TestCase +final class SearchTest extends TestCase { public function test_a_search_filter_modifies_query(): void { diff --git a/tests/Filters/SelectTest.php b/tests/Filters/SelectTest.php index e1556cc5..7c3ded44 100644 --- a/tests/Filters/SelectTest.php +++ b/tests/Filters/SelectTest.php @@ -9,7 +9,7 @@ use Illuminate\Database\Eloquent\Builder; use Illuminate\Http\Request; -class SelectTest extends TestCase +final class SelectTest extends TestCase { protected Select $filter; diff --git a/tests/Filters/SortTest.php b/tests/Filters/SortTest.php index 74862b91..ff825166 100644 --- a/tests/Filters/SortTest.php +++ b/tests/Filters/SortTest.php @@ -11,7 +11,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class SortTest extends TestCase +final class SortTest extends TestCase { public function test_a_sort_filter_modifies_query(): void { diff --git a/tests/Http/ActionControllerTest.php b/tests/Http/ActionControllerTest.php index 60ba5a52..ea20ecc0 100644 --- a/tests/Http/ActionControllerTest.php +++ b/tests/Http/ActionControllerTest.php @@ -7,7 +7,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class ActionControllerTest extends TestCase +final class ActionControllerTest extends TestCase { protected User $admin; diff --git a/tests/Http/AuthForgotPasswordControllerTest.php b/tests/Http/AuthForgotPasswordControllerTest.php index 92ab58e2..2d41116b 100644 --- a/tests/Http/AuthForgotPasswordControllerTest.php +++ b/tests/Http/AuthForgotPasswordControllerTest.php @@ -10,7 +10,7 @@ use Illuminate\Support\Facades\Notification; use Illuminate\Support\Facades\Password; -class AuthForgotPasswordControllerTest extends TestCase +final class AuthForgotPasswordControllerTest extends TestCase { protected User $user; diff --git a/tests/Http/AuthLoginControllerTest.php b/tests/Http/AuthLoginControllerTest.php index 96b3838e..e242d520 100644 --- a/tests/Http/AuthLoginControllerTest.php +++ b/tests/Http/AuthLoginControllerTest.php @@ -11,7 +11,7 @@ use Illuminate\Support\Facades\Event; use Illuminate\Support\Facades\Notification; -class AuthLoginControllerTest extends TestCase +final class AuthLoginControllerTest extends TestCase { protected User $user; diff --git a/tests/Http/AuthResetPasswordControllerTest.php b/tests/Http/AuthResetPasswordControllerTest.php index 00a157fd..f30052f0 100644 --- a/tests/Http/AuthResetPasswordControllerTest.php +++ b/tests/Http/AuthResetPasswordControllerTest.php @@ -10,7 +10,7 @@ use Illuminate\Support\Facades\Event; use Illuminate\Support\Facades\Password; -class AuthResetPasswordControllerTest extends TestCase +final class AuthResetPasswordControllerTest extends TestCase { protected string $token; diff --git a/tests/Http/AuthTwoFactorControllerTest.php b/tests/Http/AuthTwoFactorControllerTest.php index 02273b51..88182231 100644 --- a/tests/Http/AuthTwoFactorControllerTest.php +++ b/tests/Http/AuthTwoFactorControllerTest.php @@ -10,7 +10,7 @@ use Cone\Root\Tests\User; use Illuminate\Support\Facades\Notification; -class AuthTwoFactorControllerTest extends TestCase +final class AuthTwoFactorControllerTest extends TestCase { protected User $user; diff --git a/tests/Http/BelongsToManyControllerTest.php b/tests/Http/BelongsToManyControllerTest.php index 633e3bca..69fdc8d4 100644 --- a/tests/Http/BelongsToManyControllerTest.php +++ b/tests/Http/BelongsToManyControllerTest.php @@ -10,7 +10,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class BelongsToManyControllerTest extends TestCase +final class BelongsToManyControllerTest extends TestCase { protected User $admin; diff --git a/tests/Http/DashboardControllerTest.php b/tests/Http/DashboardControllerTest.php index 4111e606..8c679578 100644 --- a/tests/Http/DashboardControllerTest.php +++ b/tests/Http/DashboardControllerTest.php @@ -8,7 +8,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class DashboardControllerTest extends TestCase +final class DashboardControllerTest extends TestCase { protected User $admin; diff --git a/tests/Http/DownloadControllerTest.php b/tests/Http/DownloadControllerTest.php index 06c74930..9f128aae 100644 --- a/tests/Http/DownloadControllerTest.php +++ b/tests/Http/DownloadControllerTest.php @@ -10,7 +10,7 @@ use Illuminate\Support\Facades\Storage; use Illuminate\Support\Facades\URL; -class DownloadControllerTest extends TestCase +final class DownloadControllerTest extends TestCase { protected User $admin; diff --git a/tests/Http/MediaControllerTest.php b/tests/Http/MediaControllerTest.php index abbcd4c6..86e8188a 100644 --- a/tests/Http/MediaControllerTest.php +++ b/tests/Http/MediaControllerTest.php @@ -14,7 +14,7 @@ use Illuminate\Http\UploadedFile; use Illuminate\Support\Facades\Queue; -class MediaControllerTest extends TestCase +final class MediaControllerTest extends TestCase { protected User $admin; diff --git a/tests/Http/MorphToControllerTest.php b/tests/Http/MorphToControllerTest.php index fa561a79..a09b55eb 100644 --- a/tests/Http/MorphToControllerTest.php +++ b/tests/Http/MorphToControllerTest.php @@ -9,7 +9,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class MorphToControllerTest extends TestCase +final class MorphToControllerTest extends TestCase { protected MorphTo $field; diff --git a/tests/Http/NotificationControllerTest.php b/tests/Http/NotificationControllerTest.php index 4ded5b00..fb6b46aa 100644 --- a/tests/Http/NotificationControllerTest.php +++ b/tests/Http/NotificationControllerTest.php @@ -8,7 +8,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class NotificationControllerTest extends TestCase +final class NotificationControllerTest extends TestCase { protected User $admin; diff --git a/tests/Http/RelationControllerTest.php b/tests/Http/RelationControllerTest.php index 76e0d5da..8d7e7c2b 100644 --- a/tests/Http/RelationControllerTest.php +++ b/tests/Http/RelationControllerTest.php @@ -10,7 +10,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class RelationControllerTest extends TestCase +final class RelationControllerTest extends TestCase { protected HasMany $field; diff --git a/tests/Http/RepeaterControllerTest.php b/tests/Http/RepeaterControllerTest.php index 3c5857ef..d87e1ce1 100644 --- a/tests/Http/RepeaterControllerTest.php +++ b/tests/Http/RepeaterControllerTest.php @@ -9,7 +9,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class RepeaterControllerTest extends TestCase +final class RepeaterControllerTest extends TestCase { protected Repeater $field; diff --git a/tests/Http/ResourceControllerTest.php b/tests/Http/ResourceControllerTest.php index f652d51b..0a433e40 100644 --- a/tests/Http/ResourceControllerTest.php +++ b/tests/Http/ResourceControllerTest.php @@ -9,7 +9,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class ResourceControllerTest extends TestCase +final class ResourceControllerTest extends TestCase { protected UserResource $resource; diff --git a/tests/Http/WidgetControllerTest.php b/tests/Http/WidgetControllerTest.php index 4a2aa7a3..cfd78c4d 100644 --- a/tests/Http/WidgetControllerTest.php +++ b/tests/Http/WidgetControllerTest.php @@ -9,7 +9,7 @@ use Cone\Root\Tests\User; use Cone\Root\Widgets\Widget; -class WidgetControllerTest extends TestCase +final class WidgetControllerTest extends TestCase { protected User $admin; diff --git a/tests/Models/AuthCodeTest.php b/tests/Models/AuthCodeTest.php index 5bb1d94d..cc83d852 100644 --- a/tests/Models/AuthCodeTest.php +++ b/tests/Models/AuthCodeTest.php @@ -8,7 +8,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class AuthCodeTest extends TestCase +final class AuthCodeTest extends TestCase { protected User $user; diff --git a/tests/Models/EventTest.php b/tests/Models/EventTest.php index 82bd223e..e5faf2eb 100644 --- a/tests/Models/EventTest.php +++ b/tests/Models/EventTest.php @@ -8,7 +8,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class EventTest extends TestCase +final class EventTest extends TestCase { protected User $user; diff --git a/tests/Models/MediumTest.php b/tests/Models/MediumTest.php index cf203f68..4e9073a8 100644 --- a/tests/Models/MediumTest.php +++ b/tests/Models/MediumTest.php @@ -8,7 +8,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class MediumTest extends TestCase +final class MediumTest extends TestCase { protected User $user; diff --git a/tests/Models/MetaTest.php b/tests/Models/MetaTest.php index 9326b570..fe2561ca 100644 --- a/tests/Models/MetaTest.php +++ b/tests/Models/MetaTest.php @@ -8,7 +8,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class MetaTest extends TestCase +final class MetaTest extends TestCase { protected User $user; diff --git a/tests/Models/NotificationTest.php b/tests/Models/NotificationTest.php index 44011f36..9c4e30fb 100644 --- a/tests/Models/NotificationTest.php +++ b/tests/Models/NotificationTest.php @@ -8,7 +8,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class NotificationTest extends TestCase +final class NotificationTest extends TestCase { protected User $user; diff --git a/tests/Models/TranslationTest.php b/tests/Models/TranslationTest.php index 629f9302..89d4ef6c 100644 --- a/tests/Models/TranslationTest.php +++ b/tests/Models/TranslationTest.php @@ -8,7 +8,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class TranslationTest extends TestCase +final class TranslationTest extends TestCase { protected User $user; diff --git a/tests/Models/UserTest.php b/tests/Models/UserTest.php index 4b4a8b44..5dd7661e 100644 --- a/tests/Models/UserTest.php +++ b/tests/Models/UserTest.php @@ -11,7 +11,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class UserTest extends TestCase +final class UserTest extends TestCase { protected User $user; diff --git a/tests/Navigation/NavigationTest.php b/tests/Navigation/NavigationTest.php index b3498215..be2aacc0 100644 --- a/tests/Navigation/NavigationTest.php +++ b/tests/Navigation/NavigationTest.php @@ -8,7 +8,7 @@ use Cone\Root\Navigation\Registry; use Cone\Root\Tests\TestCase; -class NavigationTest extends TestCase +final class NavigationTest extends TestCase { protected Registry $registry; diff --git a/tests/Resources/ResourceTest.php b/tests/Resources/ResourceTest.php index 52887c3b..44afb4b1 100644 --- a/tests/Resources/ResourceTest.php +++ b/tests/Resources/ResourceTest.php @@ -8,7 +8,7 @@ use Cone\Root\Tests\TestCase; use Cone\Root\Tests\User; -class ResourceTest extends TestCase +final class ResourceTest extends TestCase { protected UserResource $resource; diff --git a/tests/Settings/SettingsTest.php b/tests/Settings/SettingsTest.php index b9b1d804..0ee66938 100644 --- a/tests/Settings/SettingsTest.php +++ b/tests/Settings/SettingsTest.php @@ -9,7 +9,7 @@ use Cone\Root\Tests\TestCase; use Illuminate\Support\Facades\Date; -class SettingsTest extends TestCase +final class SettingsTest extends TestCase { protected Registry $registry; diff --git a/tests/Widgets/WidgetTest.php b/tests/Widgets/WidgetTest.php index 2c6eeecf..c6d7546b 100644 --- a/tests/Widgets/WidgetTest.php +++ b/tests/Widgets/WidgetTest.php @@ -8,7 +8,7 @@ use Cone\Root\Widgets\Welcome; use Cone\Root\Widgets\Widget; -class WidgetTest extends TestCase +final class WidgetTest extends TestCase { protected Widget $widget;