Completed
Push — master ( 1af02f...31e012 )
by Arne
02:10
created
src/ConfigurationFileReader.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@
 block discarded – undo
57 57
             /** @var Configuration $configuration */
58 58
             $configuration = new $className();
59 59
             $configuration->exchangeArray($array);
60
-        }
61
-        catch (\InvalidArgumentException $exception)
60
+        } catch (\InvalidArgumentException $exception)
62 61
         {
63 62
             throw new ConfigurationException("In file {$configurationFilePath}", 0, $exception);
64 63
         }
Please login to merge, or discard this patch.
src/Cli/Command/InitCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
                 }
69 69
             }
70 70
         }
71
-        while($this->consoleStyle->choice('Add another vault?', ['y', 'n'], 'n') === 'y');
71
+        while ($this->consoleStyle->choice('Add another vault?', ['y', 'n'], 'n') === 'y');
72 72
 
73 73
 
74 74
         $skipDefaults = !$input->getOption('writeDefaults');
Please login to merge, or discard this patch.
src/Configuration.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -205,8 +205,7 @@
 block discarded – undo
205 205
                     $vaultConfig = new $className($this);
206 206
                     $vaultConfig->exchangeArray($val);
207 207
                 }
208
-            }
209
-            else
208
+            } else
210 209
             {
211 210
                 // using setter to prevent skipping validation
212 211
                 call_user_func([$this, 'set' . ucfirst($key)], $value);
Please login to merge, or discard this patch.