We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e9fcb5 commit 0fd7fb0Copy full SHA for 0fd7fb0
src/UriIntegrationTest.php
@@ -78,6 +78,9 @@ public function testAuthority()
78
79
$uri = $this->createUri('http://user:foo@bar.com/');
80
$this->assertEquals('user:foo@bar.com', $uri->getAuthority());
81
+
82
+ $uri = $this->createUri('http://bar.com:81/');
83
+ $this->assertEquals('bar.com:81', $uri->getAuthority());
84
}
85
86
public function testUserInfo()
0 commit comments