Skip to content

Commit

Permalink
PHPStan now handles tempnam return type as non-empty-string so we…
Browse files Browse the repository at this point in the history
… don't neet to assert it anymore
  • Loading branch information
Slamdunk committed Jun 11, 2024
1 parent 272d5e2 commit 8dab0a7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/HmacTokenTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ public function signatureValidationWithLocalFileKeyReferenceWillOperateWithKeyCo
{
$key = tempnam(sys_get_temp_dir(), 'a-very-long-prefix-to-create-a-longer-key');
self::assertIsString($key);
self::assertNotSame('', $key);

file_put_contents(
$key,
Expand Down

0 comments on commit 8dab0a7

Please sign in to comment.