We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9023ea6 commit e215364Copy full SHA for e215364
src/LaunchDarkly/FeatureFlag.php
@@ -79,8 +79,8 @@ public static function getDecoder()
79
$v['offVariation'],
80
$v['variations'] ?: [],
81
$v['deleted'],
82
- $v['trackEvents'],
83
- $v['debugEventsUntilDate']
+ isset($v['trackEvents']) && $v['trackEvents'],
+ isset($v['debugEventsUntilDate']) ? $v['debugEventsUntilDate'] : null
84
);
85
};
86
}
0 commit comments