Skip to content

Commit 8b188d2

Browse files
committed
formatting
1 parent 72b047f commit 8b188d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/LaravelAwsSecretsManager.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,13 @@ protected function getVariables()
107107
]);
108108
$secretValues = json_decode($result['SecretString'], true);
109109

110-
if(is_array($secretValues) && count($secretValues) > 0) {
110+
if (is_array($secretValues) && count($secretValues) > 0) {
111111
if (isset($secretValues['name']) && isset($secretValues['value'])) {
112112
$key = $secretValues['name'];
113113
$secret = $secretValues['value'];
114114
putenv("$key=$secret");
115115
$this->storeToCache($key, $secret);
116-
}else{
116+
} else {
117117
foreach ($secretValues as $key => $value) {
118118
putenv("$key=$value");
119119
$this->storeToCache($key, $value);

0 commit comments

Comments
 (0)