Skip to content

Commit 126cba6

Browse files
committed
- fixed doc block
1 parent ab7dbe4 commit 126cba6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

dHttp/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Client
2727
/**
2828
* Construct
2929
*
30-
* @param null $url
30+
* @param string $url
3131
* @param array $options
3232
* @throws \Exception
3333
*/

tests/dHttpTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function testPostRequest()
3131
{
3232
$http = new dHttp\Client('http://php.net');
3333
$resp = $http->post([], [CURLOPT_HEADER => true]);
34-
34+
3535
$this->assertInstanceOf('dHttp\Response', $resp);
3636
$this->assertEquals($resp->getCode(), 200);
3737
}

0 commit comments

Comments
 (0)