Skip to content

Commit 1ea5ea4

Browse files
committed
Remove trailing comma, fixing PHP 7.x compatibility
1 parent 21d816d commit 1ea5ea4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/php/com/amazon/aws/lambda/Environment.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function credentials() {
5656
return new Credentials(
5757
$this->variables['AWS_ACCESS_KEY_ID'],
5858
$this->variables['AWS_SECRET_ACCESS_KEY'],
59-
$this->variables['AWS_SESSION_TOKEN'] ?? null,
59+
$this->variables['AWS_SESSION_TOKEN'] ?? null
6060
);
6161
}
6262

0 commit comments

Comments
 (0)