Skip to content

Commit a3f96b3

Browse files
committed
Style
1 parent dc3345a commit a3f96b3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/BaseUriPlugin.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Http\Client\Plugin;
44

5-
use Http\Message\UriFactory;
65
use Http\Promise\Promise;
76
use Psr\Http\Message\RequestInterface;
87
use Psr\Http\Message\UriInterface;
@@ -15,7 +14,6 @@ class BaseUriPlugin implements Plugin
1514
private $baseUri;
1615

1716
/**
18-
*
1917
* @param UriInterface $baseUri
2018
*/
2119
public function __construct(UriInterface $baseUri)
@@ -56,7 +54,7 @@ private function modifyUri(UriInterface $uri)
5654
$modifiedUri = $modifiedUri->withQuery($uri->getQuery());
5755
} else {
5856
// Append baseUri this url
59-
if ("" !== $query = $this->baseUri->getQuery()) {
57+
if ('' !== $query = $this->baseUri->getQuery()) {
6058
// Append the uri on the query
6159
$modifiedUri = $this->baseUri->withQuery($query.$uriString);
6260
} else {

0 commit comments

Comments
 (0)