diff --git a/tests/ObjectEncryptionServiceTest.php b/tests/ObjectEncryptionServiceTest.php index e52d464..d2713ea 100644 --- a/tests/ObjectEncryptionServiceTest.php +++ b/tests/ObjectEncryptionServiceTest.php @@ -112,7 +112,6 @@ public function testEncryptSkipsNullProperties(): void { $object = new class { #[Encrypted] - /** @phpstan-ignore-next-line */ public ?string $sensitive = null; }; @@ -145,7 +144,6 @@ public function testDecryptSkipsNullProperties(): void { $object = new class { #[Encrypted] - /** @phpstan-ignore-next-line */ public ?string $sensitive = null; };