Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgergo committed Nov 21, 2024
1 parent 3e46420 commit 57d9ac1
Show file tree
Hide file tree
Showing 61 changed files with 61 additions and 61 deletions.
2 changes: 1 addition & 1 deletion tests/Actions/ActionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class ActionTest extends TestCase

protected User $user;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Breadcrumbs/RegistryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class RegistryTest extends TestCase
{
protected Registry $registry;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Console/ActionMakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function test_action_make_command(): void
$this->assertFileExists($this->app->path('Root/Actions/TestAction.php'));
}

public function tearDown(): void
protected function tearDown(): void
{
File::delete($this->app->path('Root/Actions/TestAction.php'));

Expand Down
2 changes: 1 addition & 1 deletion tests/Console/FieldMakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function test_field_make_command(): void
$this->assertFileExists($this->app->path('Root/Fields/TestField.php'));
}

public function tearDown(): void
protected function tearDown(): void
{
File::delete($this->app->path('Root/Fields/TestField.php'));

Expand Down
2 changes: 1 addition & 1 deletion tests/Console/FilterMakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function test_filter_make_command(): void
$this->assertFileExists($this->app->path('Root/Filters/TestFilter.php'));
}

public function tearDown(): void
protected function tearDown(): void
{
File::delete($this->app->path('Root/Filters/TestFilter.php'));

Expand Down
2 changes: 1 addition & 1 deletion tests/Console/InstallTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function test_install_command(): void
$this->assertDirectoryExists($this->app->storagePath('framework/testing/disks/local/root-tmp'));
}

public function tearDown(): void
protected function tearDown(): void
{
File::deleteDirectory($this->app->path('Root'));
File::delete($this->app->path('Providers/RootServiceProvider.php'));
Expand Down
2 changes: 1 addition & 1 deletion tests/Console/PublishTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function test_publish_command(): void
$this->assertDirectoryExists($this->app->publicPath('vendor/root'));
}

public function tearDown(): void
protected function tearDown(): void
{
File::deleteDirectory($this->app->publicPath('vendor'));

Expand Down
2 changes: 1 addition & 1 deletion tests/Console/ResourceMakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function test_resource_make_command(): void
$this->assertFileExists($this->app->path('Root/Resources/TestResource.php'));
}

public function tearDown(): void
protected function tearDown(): void
{
File::delete($this->app->path('Root/Resources/TestResource.php'));

Expand Down
2 changes: 1 addition & 1 deletion tests/Console/TrendMakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function test_trend_make_command(): void
$this->assertFileExists($this->app->path('Root/Widgets/TrendWidget.php'));
}

public function tearDown(): void
protected function tearDown(): void
{
File::delete($this->app->path('Root/Widgets/TrendWidget.php'));

Expand Down
2 changes: 1 addition & 1 deletion tests/Console/ValueMakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function test_value_make_command(): void
$this->assertFileExists($this->app->path('Root/Widgets/ValueWidget.php'));
}

public function tearDown(): void
protected function tearDown(): void
{
File::delete($this->app->path('Root/Widgets/ValueWidget.php'));

Expand Down
2 changes: 1 addition & 1 deletion tests/Console/WidgetMakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function test_widget_make_command(): void
$this->assertFileExists($this->app->path('Root/Widgets/TestWidget.php'));
}

public function tearDown(): void
protected function tearDown(): void
{
File::delete($this->app->path('Root/Widgets/TestWidget.php'));

Expand Down
2 changes: 1 addition & 1 deletion tests/Conversion/ConversionDriverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class ConversionDriverTest extends TestCase
{
protected Manager $manager;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/BelongsToTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class BelongsToTest extends TestCase
{
protected BelongsTo $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/BooleanTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class BooleanTest extends TestCase
{
protected Boolean $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/CheckboxTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class CheckboxTest extends TestCase
{
protected Checkbox $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/ColorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class ColorTest extends TestCase
{
protected Color $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/DateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class DateTest extends TestCase
{
protected Date $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/DropdownTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class DropdownTest extends TestCase
{
protected Dropdown $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/EditorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class EditorTest extends TestCase
{
protected Editor $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/EmailTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class EmailTest extends TestCase
{
protected Email $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/FieldTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class FieldTest extends TestCase

protected Model $model;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/FieldsetTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class FieldsetTest extends TestCase
{
protected Fieldset $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/FileTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class FileTest extends TestCase
{
protected File $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/HasManyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class HasManyTest extends TestCase
{
protected HasMany $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/HasOneTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class HasOneTest extends TestCase
{
protected HasOne $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/HiddenTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class HiddenTest extends TestCase
{
protected Hidden $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/IDTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class IDTest extends TestCase
{
protected ID $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/MetaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class MetaTest extends TestCase
{
protected Meta $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/NumberTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class NumberTest extends TestCase
{
protected Number $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/RadioTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class RadioTest extends TestCase
{
protected Radio $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/RangeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class RangeTest extends TestCase
{
protected Range $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/RepeaterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class RepeaterTest extends TestCase
{
protected Repeater $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/SelectTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class SelectTest extends TestCase
{
protected Select $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/SlugTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class SlugTest extends TestCase
{
protected Slug $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/TextTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class TextTest extends TestCase
{
protected Text $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/TextareaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class TextareaTest extends TestCase
{
protected Textarea $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Fields/URLTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class URLTest extends TestCase
{
protected URL $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Filters/FilterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class FilterTest extends TestCase
{
protected Filter $filter;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Filters/SelectFilterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class SelectFilterTest extends TestCase
{
protected Select $filter;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Http/ActionControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class ActionControllerTest extends TestCase
{
protected User $admin;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Http/BelongsToManyControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class BelongsToManyControllerTest extends TestCase

protected BelongsToMany $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Http/DashboardControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class DashboardControllerTest extends TestCase
{
protected User $admin;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Http/DownloadControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class DownloadControllerTest extends TestCase
{
protected User $admin;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Http/MediaControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class MediaControllerTest extends TestCase

protected Media $field;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
Loading

0 comments on commit 57d9ac1

Please sign in to comment.