@@ -30,7 +30,7 @@ |
||
30 | 30 | |
31 | 31 | $diffKeys = array_diff(array_keys($sourceValues), array_keys($destinationValues)); |
32 | 32 | |
33 | - return array_filter($sourceValues, function ($key) use ($diffKeys) { |
|
33 | + return array_filter($sourceValues, function($key) use ($diffKeys) { |
|
34 | 34 | return in_array($key, $diffKeys); |
35 | 35 | }, ARRAY_FILTER_USE_KEY); |
36 | 36 | } |
@@ -7,4 +7,4 @@ |
||
7 | 7 | |
8 | 8 | namespace Jtant\LaravelEnvSync; |
9 | 9 | |
10 | -class FileNotFound extends \Exception{} |
|
10 | +class FileNotFound extends \Exception {} |
@@ -94,7 +94,7 @@ |
||
94 | 94 | } |
95 | 95 | |
96 | 96 | if ($action == self::CHANGE) { |
97 | - $diff = $this->output->ask(sprintf("Please choose a value for '%s'", $key, $diff), null, function ($value) { |
|
97 | + $diff = $this->output->ask(sprintf("Please choose a value for '%s'", $key, $diff), null, function($value) { |
|
98 | 98 | return $value; |
99 | 99 | }); |
100 | 100 | } |