@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * /src/Command/User/EditUserCommand.php |
5 | 5 | * |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * /src/Command/ApiKey/ApiKeyManagementCommand.php |
5 | 5 | * |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * /src/Command/ApiKey/ChangeTokenCommand.php |
5 | 5 | * |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * /src/Command/ApiKey/RemoveApiKeyCommand.php |
5 | 5 | * |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * /src/Command/ApiKey/ApiKeyHelper.php |
5 | 5 | * |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | * |
50 | 50 | * @param ApiKey $apiKey |
51 | 51 | */ |
52 | - $iterator = function (ApiKey $apiKey) use (&$choices): void { |
|
52 | + $iterator = function(ApiKey $apiKey) use (&$choices): void { |
|
53 | 53 | $message = \sprintf( |
54 | 54 | '[%s] %s', |
55 | 55 | $apiKey->getToken(), |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * /src/Command/ApiKey/EditApiKeyCommand.php |
5 | 5 | * |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * /src/Command/ApiKey/ListApiKeysCommand.php |
5 | 5 | * |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | * |
96 | 96 | * @return string |
97 | 97 | */ |
98 | - $formatterGroup = function (UserGroup $userGroup): string { |
|
98 | + $formatterGroup = function(UserGroup $userGroup): string { |
|
99 | 99 | return \sprintf( |
100 | 100 | '%s (%s)', |
101 | 101 | $userGroup->getName(), |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | * |
109 | 109 | * @return array |
110 | 110 | */ |
111 | - $formatterUser = function (ApiKey $apiToken) use ($formatterGroup): array { |
|
111 | + $formatterUser = function(ApiKey $apiToken) use ($formatterGroup): array { |
|
112 | 112 | return [ |
113 | 113 | $apiToken->getId(), |
114 | 114 | $apiToken->getToken(), |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * /src/Command/ApiKey/CreateApiKeyCommand.php |
5 | 5 | * |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * /src/Command/Traits/ExecuteMultipleCommandTrait.php |
5 | 5 | * |