Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Commit

Permalink
Add trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed May 18, 2024
1 parent 392546c commit a187fe0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/src/Controller/OTPTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ public function testPromptResendExpired(): void
public static function loadState(string $id, string $stage, bool $allowMissing = false): ?array
{
return [
'cmdotcom:expired' => true
'cmdotcom:expired' => true,
];
}
});
Expand All @@ -384,7 +384,7 @@ public function testPromptResendSendFailure(): void
'GET',
[
'AuthState' => 'someState',
]
],
);

$c = new Controller\OTP(self::$config, self::$session);
Expand All @@ -393,7 +393,7 @@ public function testPromptResendSendFailure(): void
public static function loadState(string $id, string $stage, bool $allowMissing = false): ?array
{
return [
'cmdotcom:sendFailure' => ['something went wrong']
'cmdotcom:sendFailure' => ['something went wrong'],
];
}
});
Expand Down

0 comments on commit a187fe0

Please sign in to comment.