Skip to content

Commit 054304c

Browse files
author
Idir Ouhab Meskine
committed
Ensure that FeatureFlag _variations is non-null
1 parent f348c10 commit 054304c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LaunchDarkly/FeatureFlag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public static function getDecoder() {
6363
array_map(Rule::getDecoder(), $v['rules'] ?: []),
6464
call_user_func(VariationOrRollout::getDecoder(), $v['fallthrough']),
6565
$v['offVariation'],
66-
$v['variations'],
66+
$v['variations'] ?: [],
6767
$v['deleted']);
6868
};
6969
}

0 commit comments

Comments
 (0)