Skip to content

Commit e95ead4

Browse files
authored
Fix phpstan
1 parent 1373c38 commit e95ead4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Secrets.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Secrets
1818
public static function loadSecretEnvironmentVariables(?SsmClient $ssmClient = null): void
1919
{
2020
/** @var array<string,string>|string|false $envVars */
21-
$envVars = getenv(local_only: true); // @phpstan-ignore-line PHPStan is wrong
21+
$envVars = getenv(local_only: true);
2222
if (! is_array($envVars)) {
2323
return;
2424
}

0 commit comments

Comments
 (0)