Skip to content

Commit 945fb94

Browse files
(style) fix FlagsmithProviderTest trailing comma
Signed-off-by: Chris Lightfoot-Wild <[email protected]>
1 parent 381b541 commit 945fb94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

providers/Flagsmith/tests/Unit/FlagsmithProviderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ protected function buildProvider(string $environmentModelPath): Provider
2222
{
2323
/** @var string $encoded */
2424
$encoded = file_get_contents($environmentModelPath);
25-
$modelData = json_decode($encoded,);
25+
$modelData = json_decode($encoded);
2626

2727
// @phpstan-ignore-next-line EnvironmentModel::build() type-hint is string but implementation expects object
2828
$offlineHandler = new TestOfflineHandler(EnvironmentModel::build($modelData));

0 commit comments

Comments
 (0)