Passed
Branch master (b4ac3b)
by Tarmo
05:51
created
src/Command/User/EditUserCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * /src/Command/User/EditUserCommand.php
5 5
  *
Please login to merge, or discard this patch.
src/Command/ApiKey/ApiKeyManagementCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * /src/Command/ApiKey/ApiKeyManagementCommand.php
5 5
  *
Please login to merge, or discard this patch.
src/Command/ApiKey/ChangeTokenCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * /src/Command/ApiKey/ChangeTokenCommand.php
5 5
  *
Please login to merge, or discard this patch.
src/Command/ApiKey/RemoveApiKeyCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * /src/Command/ApiKey/RemoveApiKeyCommand.php
5 5
  *
Please login to merge, or discard this patch.
src/Command/ApiKey/ApiKeyHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
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
 block discarded – undo
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(),
Please login to merge, or discard this patch.
src/Command/ApiKey/EditApiKeyCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * /src/Command/ApiKey/EditApiKeyCommand.php
5 5
  *
Please login to merge, or discard this patch.
src/Command/ApiKey/ListApiKeysCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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(),
Please login to merge, or discard this patch.
src/Command/ApiKey/CreateApiKeyCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * /src/Command/ApiKey/CreateApiKeyCommand.php
5 5
  *
Please login to merge, or discard this patch.
src/Command/Traits/ExecuteMultipleCommandTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * /src/Command/Traits/ExecuteMultipleCommandTrait.php
5 5
  *
Please login to merge, or discard this patch.