Skip to content

Commit

Permalink
Codestyle fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Codeweld committed Jan 27, 2021
1 parent 152a53d commit 17e8239
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/Controller/Catalog/GetCatalogAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ public function __construct(
bool $ssl,
string $username,
string $password
)
{
) {
$this->host = $host;
$this->port = $port;
$this->transport = $transport;
Expand All @@ -72,9 +71,9 @@ public function __invoke(Request $request): Response
'transport' => $this->transport,
'ssl' => $this->ssl,
'username' => $this->username,
'password' => $this->password
'password' => $this->password,
]);

$client->addConnection($connection);

$index = $request->attributes->get('index');
Expand Down

0 comments on commit 17e8239

Please sign in to comment.