Ignore the "result unused" error in tests from the PHPStan config

This commit is contained in:
Ben Ramsey
2025-06-24 20:23:23 -05:00
committed by Ben Ramsey
parent 088b87356d
commit 4ca249e960
20 changed files with 7 additions and 32 deletions
-2
View File
@@ -73,7 +73,6 @@ final class UuidGenerationBench
public function benchUuid3Generation(): void
{
/** @phpstan-ignore staticMethod.resultUnused */
Uuid::uuid3($this->namespace, 'name');
}
@@ -84,7 +83,6 @@ final class UuidGenerationBench
public function benchUuid5Generation(): void
{
/** @phpstan-ignore staticMethod.resultUnused */
Uuid::uuid5($this->namespace, 'name');
}