Skip to content

Commit 9dd0e11

Browse files
committed
GET-1975 | feat(auth without url): php linting
1 parent dd7a719 commit 9dd0e11

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/Client.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ class Client
1616
{
1717
public function __construct(
1818
protected AuthEntity $authEntity
19-
) { }
19+
) {
20+
}
2021

2122
/**
2223
* @SuppressWarnings(PHPMD.StaticAccess)

src/Command/AbstractCommand.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@
99
abstract class AbstractCommand implements CommandInterface
1010
{
1111
public function __construct(protected HttpClientInterface $httpClient)
12-
{ }
12+
{
13+
}
1314
}

src/Service/Http/AbstractHttpClient.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ abstract class AbstractHttpClient implements HttpClientInterface
2121
public function __construct(
2222
public AuthEntity $authEntity,
2323
protected ClientInterface $httpClient
24-
) { }
24+
) {
25+
}
2526

2627
protected function getBaseUrlApiV1(): string
2728
{

0 commit comments

Comments
 (0)