Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/Actions/ActionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Actions/SendPasswordResetNotificationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Actions/SendVerificationNotificationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Breadcrumbs/RegistryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Illuminate\Http\Request;
use Illuminate\Routing\Route;

class RegistryTest extends TestCase
final class RegistryTest extends TestCase
{
protected Registry $registry;

Expand Down
2 changes: 1 addition & 1 deletion tests/Console/ActionMakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Console/ClearChunkTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Console/ClearMediaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Console/FieldMakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Console/FilterMakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Console/InstallTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Console/PublishTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Console/ResourceMakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Console/TrendMakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Console/ValueMakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Console/WidgetMakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Conversion/ConversionDriverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Conversion/ImageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/BelongsToTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/BooleanTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/CheckboxTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/ColorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/DateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/DropdownTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/EditorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/EmailTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/FieldTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/FieldsetTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/FileTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/HasManyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/HasOneTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/HiddenTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/IDTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/MetaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/NumberTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/RadioTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/RangeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/RepeaterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/SelectTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/SlugTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/TextTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/TextareaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/URLTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Filters/FilterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion tests/Filters/MediaSearchTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
Loading
Loading