Skip to content

Commit 57d9ac1

Browse files
committed
lint
1 parent 3e46420 commit 57d9ac1

Some content is hidden

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

61 files changed

+61
-61
lines changed

tests/Actions/ActionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class ActionTest extends TestCase
1414

1515
protected User $user;
1616

17-
public function setUp(): void
17+
protected function setUp(): void
1818
{
1919
parent::setUp();
2020

tests/Breadcrumbs/RegistryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class RegistryTest extends TestCase
1111
{
1212
protected Registry $registry;
1313

14-
public function setUp(): void
14+
protected function setUp(): void
1515
{
1616
parent::setUp();
1717

tests/Console/ActionMakeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function test_action_make_command(): void
1616
$this->assertFileExists($this->app->path('Root/Actions/TestAction.php'));
1717
}
1818

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

tests/Console/FieldMakeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function test_field_make_command(): void
1919
$this->assertFileExists($this->app->path('Root/Fields/TestField.php'));
2020
}
2121

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

tests/Console/FilterMakeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function test_filter_make_command(): void
2020
$this->assertFileExists($this->app->path('Root/Filters/TestFilter.php'));
2121
}
2222

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

tests/Console/InstallTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function test_install_command(): void
1717
$this->assertDirectoryExists($this->app->storagePath('framework/testing/disks/local/root-tmp'));
1818
}
1919

20-
public function tearDown(): void
20+
protected function tearDown(): void
2121
{
2222
File::deleteDirectory($this->app->path('Root'));
2323
File::delete($this->app->path('Providers/RootServiceProvider.php'));

tests/Console/PublishTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function test_publish_command(): void
1717
$this->assertDirectoryExists($this->app->publicPath('vendor/root'));
1818
}
1919

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

tests/Console/ResourceMakeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function test_resource_make_command(): void
1616
$this->assertFileExists($this->app->path('Root/Resources/TestResource.php'));
1717
}
1818

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

tests/Console/TrendMakeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function test_trend_make_command(): void
1616
$this->assertFileExists($this->app->path('Root/Widgets/TrendWidget.php'));
1717
}
1818

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

tests/Console/ValueMakeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function test_value_make_command(): void
1616
$this->assertFileExists($this->app->path('Root/Widgets/ValueWidget.php'));
1717
}
1818

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

0 commit comments

Comments
 (0)