-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
qa: update psalm configuration and cleanup baseline
Signed-off-by: Maximilian Bösing <[email protected]>
- Loading branch information
Showing
4 changed files
with
6 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -166,7 +166,7 @@ public function testWithPortReturnsNewInstanceWithProvidedPort($port): void | |
public function testWithPortReturnsSameInstanceWithProvidedPortIsSameAsBefore(): void | ||
{ | ||
$uri = new Uri('https://user:[email protected]:3001/foo?bar=baz#quz'); | ||
/** @psalm-suppress PossiblyInvalidArgument,InvalidArgument */ | ||
/** @psalm-suppress InvalidArgument */ | ||
$new = $uri->withPort('3001'); | ||
$this->assertSame($uri, $new); | ||
$this->assertSame(3001, $new->getPort()); | ||
|