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 a44d99c commit 47d566fCopy full SHA for 47d566f
tests/UriTest.php
@@ -77,12 +77,10 @@ public function testRequestUrl()
77
$this->assertEquals('bitcoin:'.$string.'?r=https%3A%2F%2Fexample.com%2Frequest', $uri->uri());
78
}
79
80
- /**
81
- * @expectedException \InvalidArgumentException
82
- */
83
public function testBip21MustProvideAddress()
84
{
85
$address = null;
+ $this->expectException(\InvalidArgumentException::class);
86
new Uri($address);
87
88
0 commit comments