Skip to content

Commit

Permalink
Fix PHPStan Error
Browse files Browse the repository at this point in the history
  • Loading branch information
IlicMiljan committed Mar 10, 2024
1 parent f32c019 commit 9df84b7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/ObjectEncryptionServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ public function testEncryptSkipsNullProperties(): void
{
$object = new class {
#[Encrypted]
/** @phpstan-ignore-next-line */
public ?string $sensitive = null;
};

Expand Down Expand Up @@ -145,7 +144,6 @@ public function testDecryptSkipsNullProperties(): void
{
$object = new class {
#[Encrypted]
/** @phpstan-ignore-next-line */
public ?string $sensitive = null;
};

Expand Down

0 comments on commit 9df84b7

Please sign in to comment.