Completed
Push — master ( 4dda9f...9a51b8 )
by Nicolas
02:22
created
src/Configuration/InMemoryReader.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 
45 45
     public function getAllVariables(): array
46 46
     {
47
-        $variables = array_map(function($key){
47
+        $variables = array_map(function($key) {
48 48
             return $this->extractVariableName($key);
49 49
         }, array_keys($this->values));
50 50
 
Please login to merge, or discard this patch.
src/ProfileReader.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -193,8 +193,7 @@
 block discarded – undo
193 193
         if(
194 194
             ! array_key_exists($parameter, $parameterValidators)
195 195
             || ! $parameterValidators[$parameter] instanceof \Closure
196
-        )
197
-        {
196
+        ) {
198 197
             return;
199 198
         }
200 199
 
Please login to merge, or discard this patch.