From b0787e570aad691a9fd7e698fc20db9733b7684e Mon Sep 17 00:00:00 2001 From: Jonas Drieghe Date: Tue, 14 Mar 2017 08:52:50 +0100 Subject: [PATCH] Default was type hinted as boolean but can be anything. --- src/LaunchDarkly/LDClient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LaunchDarkly/LDClient.php b/src/LaunchDarkly/LDClient.php index c439b7906..78883327d 100644 --- a/src/LaunchDarkly/LDClient.php +++ b/src/LaunchDarkly/LDClient.php @@ -99,7 +99,7 @@ public function __construct($sdkKey, $options = array()) { * * @param string $key The unique key for the feature flag * @param LDUser $user The end user requesting the flag - * @param boolean $default The default value of the flag + * @param mixed $default The default value of the flag * * @return mixed The result of the Feature Flag evaluation, or $default if any errors occurred. */