@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | /** |
4 | 4 | * /src/ArgumentResolver/LoggedInUserValueResolver.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/ArgumentResolver/EntityValueResolver.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/User/RemoveUserCommand.php |
5 | 5 | * |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | } |
77 | 77 | |
78 | 78 | if ($input->isInteractive()) { |
79 | - $message ??= 'Nothing changed - have a nice day'; |
|
79 | + $message ?? = 'Nothing changed - have a nice day'; |
|
80 | 80 | |
81 | 81 | $io->success($message); |
82 | 82 | } |
@@ -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/User/RemoveUserGroupCommand.php |
5 | 5 | * |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | } |
76 | 76 | |
77 | 77 | if ($input->isInteractive()) { |
78 | - $message ??= 'Nothing changed - have a nice day'; |
|
78 | + $message ?? = 'Nothing changed - have a nice day'; |
|
79 | 79 | |
80 | 80 | $io->success($message); |
81 | 81 | } |
@@ -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/User/EditUserCommand.php |
5 | 5 | * |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | } |
77 | 77 | |
78 | 78 | if ($input->isInteractive()) { |
79 | - $message ??= 'Nothing changed - have a nice day'; |
|
79 | + $message ?? = 'Nothing changed - have a nice day'; |
|
80 | 80 | |
81 | 81 | $io->success($message); |
82 | 82 | } |
@@ -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/User/EditUserGroupCommand.php |
5 | 5 | * |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | } |
76 | 76 | |
77 | 77 | if ($input->isInteractive()) { |
78 | - $message ??= 'Nothing changed - have a nice day'; |
|
78 | + $message ?? = 'Nothing changed - have a nice day'; |
|
79 | 79 | |
80 | 80 | $io->success($message); |
81 | 81 | } |
@@ -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/Traits/SymfonyStyleTrait.php |
5 | 5 | * |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | OutputInterface $output, |
35 | 35 | ?bool $clearScreen = null |
36 | 36 | ): SymfonyStyle { |
37 | - $clearScreen ??= true; |
|
37 | + $clearScreen ?? = true; |
|
38 | 38 | |
39 | 39 | $io = new SymfonyStyle($input, $output); |
40 | 40 |
@@ -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/EditApiKeyCommand.php |
5 | 5 | * |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | } |
77 | 77 | |
78 | 78 | if ($input->isInteractive()) { |
79 | - $message ??= 'Nothing changed - have a nice day'; |
|
79 | + $message ?? = 'Nothing changed - have a nice day'; |
|
80 | 80 | |
81 | 81 | $io->success($message); |
82 | 82 | } |
@@ -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/RemoveApiKeyCommand.php |
5 | 5 | * |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | } |
76 | 76 | |
77 | 77 | if ($input->isInteractive()) { |
78 | - $message ??= 'Nothing changed - have a nice day'; |
|
78 | + $message ?? = 'Nothing changed - have a nice day'; |
|
79 | 79 | |
80 | 80 | $io->success($message); |
81 | 81 | } |