Skip to content

Commit fa237a3

Browse files
committed
Fix coding standards violation
1 parent f39fba5 commit fa237a3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/SpecTests/Context.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ public static function fromTransactions(stdClass $test, $databaseName, $collecti
251251
return $o;
252252
}
253253

254-
public static function getAWSCredentials(): array
254+
public static function getAWSCredentials() : array
255255
{
256256
if (! getenv('AWS_ACCESS_KEY_ID') || ! getenv('AWS_SECRET_ACCESS_KEY')) {
257257
Assert::markTestSkipped('Please configure AWS credentials to use AWS KMS provider.');
@@ -263,7 +263,7 @@ public static function getAWSCredentials(): array
263263
];
264264
}
265265

266-
public static function getAzureCredentials(): array
266+
public static function getAzureCredentials() : array
267267
{
268268
if (! getenv('AZURE_TENANT_ID') || ! getenv('AZURE_CLIENT_ID') || ! getenv('AZURE_CLIENT_SECRET')) {
269269
Assert::markTestSkipped('Please configure Azure credentials to use Azure KMS provider.');
@@ -276,7 +276,7 @@ public static function getAzureCredentials(): array
276276
];
277277
}
278278

279-
public static function getGCPCredentials(): array
279+
public static function getGCPCredentials() : array
280280
{
281281
if (! getenv('GCP_EMAIL') || ! getenv('GCP_PRIVATE_KEY')) {
282282
Assert::markTestSkipped('Please configure GCP credentials to use GCP KMS provider.');

0 commit comments

Comments
 (0)