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/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.