Skip to content

Commit

Permalink
Define test classes as final
Browse files Browse the repository at this point in the history
  • Loading branch information
laravel-shift committed Mar 28, 2024
1 parent f2e5cf8 commit e7505db
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/BuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Swis\Laravel\JavaScriptData\Stub\JsonableStub;
use Swis\Laravel\JavaScriptData\Stub\JsonSerializableStub;

class BuilderTest extends TestCase
final class BuilderTest extends TestCase
{
#[Test]
public function itBuilds(): void
Expand Down
2 changes: 1 addition & 1 deletion tests/ResponseFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Illuminate\Routing\ResponseFactory as IlluminateResponseFactory;
use Orchestra\Testbench\TestCase;

class ResponseFactoryTest extends TestCase
final class ResponseFactoryTest extends TestCase
{
#[Test]
public function itMakesAResponse(): void
Expand Down
2 changes: 1 addition & 1 deletion tests/ResponseMacroTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Illuminate\Support\Facades\Response;
use Orchestra\Testbench\TestCase;

class ResponseMacroTest extends TestCase
final class ResponseMacroTest extends TestCase
{
protected function getPackageProviders($app)
{
Expand Down
2 changes: 1 addition & 1 deletion tests/ServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Illuminate\Routing\ResponseFactory;
use Orchestra\Testbench\TestCase;

class ServiceProviderTest extends TestCase
final class ServiceProviderTest extends TestCase
{
protected function getPackageProviders($app)
{
Expand Down

0 comments on commit e7505db

Please sign in to comment.