Skip to content

Commit

Permalink
qa: remove unused psalm suppressions reported by psalm itself
Browse files Browse the repository at this point in the history
Signed-off-by: Maximilian Bösing <[email protected]>
  • Loading branch information
boesing committed Apr 7, 2023
1 parent f048286 commit ee73411
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/MessageTraitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ public function numericHeaderValuesProvider(): array
/**
* @dataProvider numericHeaderValuesProvider
* @group 99
* @psalm-suppress InvalidArgument,InvalidScalarArgument this test
* @psalm-suppress InvalidArgument this test
* explicitly verifies that pre-type-declaration implicit type
* conversion semantics still apply, for BC Compliance
*/
Expand Down
2 changes: 1 addition & 1 deletion test/StreamTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ public function testRaisesExceptionOnAttachForNonStreamResources(): void
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('stream');

/** @psalm-suppress ImplicitToStringCast, PossiblyInvalidArgument */
/** @psalm-suppress PossiblyInvalidArgument */
$stream->attach($resource);
}

Expand Down

0 comments on commit ee73411

Please sign in to comment.