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 authored and chelout committed Mar 15, 2024
1 parent 6129400 commit c26242d
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion tests/Feature/HasBelongsToEventsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Chelout\RelationshipEvents\Tests\TestCase;
use Illuminate\Support\Facades\Event;

class HasBelongsToEventsTest extends TestCase
final class HasBelongsToEventsTest extends TestCase
{
public function setup(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/HasBelongsToManyEventsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Chelout\RelationshipEvents\Tests\TestCase;
use Illuminate\Support\Facades\Event;

class HasBelongsToManyEventsTest extends TestCase
final class HasBelongsToManyEventsTest extends TestCase
{
public function setup(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/HasManyEventsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Chelout\RelationshipEvents\Tests\TestCase;
use Illuminate\Support\Facades\Event;

class HasManyEventsTest extends TestCase
final class HasManyEventsTest extends TestCase
{
public function setup(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/HasMorphManyEventsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Chelout\RelationshipEvents\Tests\TestCase;
use Illuminate\Support\Facades\Event;

class HasMorphManyEventsTest extends TestCase
final class HasMorphManyEventsTest extends TestCase
{
public function setup(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/HasMorphOneEventsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Chelout\RelationshipEvents\Tests\TestCase;
use Illuminate\Support\Facades\Event;

class HasMorphOneEventsTest extends TestCase
final class HasMorphOneEventsTest extends TestCase
{
public function setup(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/HasMorphToEventsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Chelout\RelationshipEvents\Tests\TestCase;
use Illuminate\Support\Facades\Event;

class HasMorphToEventsTest extends TestCase
final class HasMorphToEventsTest extends TestCase
{
public function setup(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/HasMorphToManyEventsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Chelout\RelationshipEvents\Tests\TestCase;
use Illuminate\Support\Facades\Event;

class HasMorphToManyEventsTest extends TestCase
final class HasMorphToManyEventsTest extends TestCase
{
public function setup(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/HasMorphedByManyEventsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Chelout\RelationshipEvents\Tests\TestCase;
use Illuminate\Support\Facades\Event;

class HasMorphedByManyEventsTest extends TestCase
final class HasMorphedByManyEventsTest extends TestCase
{
public function setup(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/HasOneEventsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Chelout\RelationshipEvents\Tests\TestCase;
use Illuminate\Support\Facades\Event;

class HasOneEventsTest extends TestCase
final class HasOneEventsTest extends TestCase
{
public function setup(): void
{
Expand Down

0 comments on commit c26242d

Please sign in to comment.