Test Failed
Pull Request — master (#1)
by BENOIT
03:18
created
src/Command/ChangePassphraseCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         if (null === $input->getOption('old-passphrase')) {
57 57
             $input->setOption('old-passphrase', $io->askHidden(
58 58
                 'Enter your old passphrase:',
59
-                function ($passphrase) {
59
+                function($passphrase) {
60 60
 
61 61
                     if (0 === \strlen($passphrase)) {
62 62
                         return null;
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         if (null === $input->getOption('new-passphrase')) {
71 71
             $input->setOption('new-passphrase', $io->askHidden(
72 72
                 'Enter your new passphrase:',
73
-                function ($passphrase) use ($io) {
73
+                function($passphrase) use ($io) {
74 74
 
75 75
                     if (0 === \strlen($passphrase)) {
76 76
                         return null;
Please login to merge, or discard this patch.
src/Command/DecryptCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         if (null === $input->getArgument('payload')) {
40 40
             $input->setArgument('payload', $io->askHidden(
41 41
                 'Enter the value to decrypt:',
42
-                function ($payload) {
42
+                function($payload) {
43 43
 
44 44
                     if (!isset($payload[0])) {
45 45
                         throw new \InvalidArgumentException("Invalid value.");
Please login to merge, or discard this patch.
src/Command/EncryptCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         if (null === $input->getArgument('payload')) {
40 40
             $input->setArgument('payload', $io->askHidden(
41 41
                 'Enter the value to encrypt:',
42
-                function ($payload) {
42
+                function($payload) {
43 43
 
44 44
                     if (!isset($payload[0])) {
45 45
                         throw new \InvalidArgumentException("Invalid value.");
Please login to merge, or discard this patch.
src/Command/GenerateKeyPairCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
         if (null === $input->getOption('passphrase')) {
47 47
             $input->setOption('passphrase', $io->askHidden(
48 48
                 'Enter your new passphrase:',
49
-                function ($passphrase) use ($io) {
49
+                function($passphrase) use ($io) {
50 50
 
51 51
                     if (0 === \strlen($passphrase)) {
52 52
                         return null;
Please login to merge, or discard this patch.
src/Command/RegisterSecretCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
                 $io->ask(
48 48
                     'Enter the secret\'s key:',
49 49
                     null,
50
-                    function ($key) {
50
+                    function($key) {
51 51
                         return $this->validateKey($key);
52 52
                     }
53 53
                 )
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
                 'value',
60 60
                 $io->askHidden(
61 61
                     'Enter the secret\'s value:',
62
-                    function ($key) {
62
+                    function($key) {
63 63
                         return $this->validateValue($key);
64 64
                     }
65 65
                 )
Please login to merge, or discard this patch.