Passed
Branch master (08916f)
by Tarmo
13:38 queued 08:48
created
src/ArgumentResolver/LoggedInUserValueResolver.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/ArgumentResolver/LoggedInUserValueResolver.php
5 5
  *
Please login to merge, or discard this patch.
src/ArgumentResolver/EntityValueResolver.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/ArgumentResolver/EntityValueResolver.php
5 5
  *
Please login to merge, or discard this patch.
src/Command/User/RemoveUserCommand.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/User/RemoveUserCommand.php
5 5
  *
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Command/User/RemoveUserGroupCommand.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/User/RemoveUserGroupCommand.php
5 5
  *
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Command/User/EditUserCommand.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/User/EditUserCommand.php
5 5
  *
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Command/User/EditUserGroupCommand.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/User/EditUserGroupCommand.php
5 5
  *
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Command/Traits/SymfonyStyleTrait.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/Traits/SymfonyStyleTrait.php
5 5
  *
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Command/ApiKey/EditApiKeyCommand.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/EditApiKeyCommand.php
5 5
  *
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Command/ApiKey/RemoveApiKeyCommand.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/RemoveApiKeyCommand.php
5 5
  *
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
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
         }
Please login to merge, or discard this patch.