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 Feb 25, 2025
1 parent 8ab92af commit e449efc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/EncryptedModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Swis\Laravel\Encrypted\EncryptedModel;
use Swis\Laravel\Encrypted\Tests\_mocks\Builder;

class EncryptedModelTest extends TestCase
final class EncryptedModelTest extends TestCase
{
#[Test]
public function itDecryptsRawAttributes(): void
Expand Down
2 changes: 1 addition & 1 deletion tests/FilesystemTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use PHPUnit\Framework\Attributes\Test;
use Illuminate\Support\Facades\Storage;

class FilesystemTest extends TestCase
final class FilesystemTest extends TestCase
{
#[Test]
public function itRegistersTheFilesystemDriver(): void
Expand Down

0 comments on commit e449efc

Please sign in to comment.