From 6dfbb23075174207f900caafe489743cdc02f732 Mon Sep 17 00:00:00 2001 From: David Stockton Date: Wed, 21 Nov 2018 12:32:13 -0700 Subject: [PATCH] Update spelling of anonymous property of LDUser The protected $anonyomus field results in a public $anonymous field being added whenever someone builds an LDUser that is anonymous. Fixing the spelling will bring that back to protected. --- src/LaunchDarkly/LDUser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LaunchDarkly/LDUser.php b/src/LaunchDarkly/LDUser.php index fbf78ccfa..9fc67f790 100644 --- a/src/LaunchDarkly/LDUser.php +++ b/src/LaunchDarkly/LDUser.php @@ -17,7 +17,7 @@ class LDUser protected $_avatar = null; protected $_firstName = null; protected $_lastName = null; - protected $_anonyomus = false; + protected $_anonymous = false; protected $_custom = array(); protected $_privateAttributeNames = array();