Skip to content

Commit ebafd9a

Browse files
committed
Remove unused use statement from file header.
1 parent 4e4454f commit ebafd9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Common/Api/OperatorTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
use GuzzleHttp\ClientInterface;
88
use GuzzleHttp\Promise\Promise;
99
use GuzzleHttp\Promise\PromiseInterface;
10-
use function GuzzleHttp\uri_template;
1110
use OpenStack\Common\Resource\ResourceInterface;
1211
use OpenStack\Common\Transport\RequestSerializer;
1312
use Psr\Http\Message\ResponseInterface;
@@ -110,6 +109,7 @@ protected function sendRequest(Operation $operation, array $userValues = [], boo
110109

111110
$options = (new RequestSerializer())->serializeOptions($operation, $userValues);
112111
$method = $async ? 'requestAsync' : 'request';
112+
113113
$uri = Utils::uri_template($operation->getPath(), $userValues);
114114
return $this->client->$method($operation->getMethod(), $uri, $options);
115115
}

0 commit comments

Comments
 (0)