Skip to content

Commit 39dec58

Browse files
committed
Fix service account default value type in Config
1 parent 117a0be commit 39dec58

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Configuration/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public function processProperties(string $configDefinition): bool
125125

126126
public function getServiceAccount(): ?array
127127
{
128-
$serviceAccount = $this->getArrayValue(['parameters', 'service_account'], '');
128+
$serviceAccount = $this->getArrayValue(['parameters', 'service_account'], []);
129129
if (empty($serviceAccount)) {
130130
return null;
131131
}

0 commit comments

Comments
 (0)