We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00eb15c commit 2136acaCopy full SHA for 2136aca
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# Optimizely PHP SDK Changelog
2
3
+## 4.0.2
4
+March 14, 2025
5
+
6
+* Fix: Explicitly define class properties #288
7
8
## 4.0.1
9
December 4, 2023
10
src/Optimizely/Event/Builder/EventBuilder.php
@@ -39,7 +39,7 @@ class EventBuilder
39
/**
40
* @const string Version of the Optimizely PHP SDK.
41
*/
42
- const SDK_VERSION = '4.0.1';
+ const SDK_VERSION = '4.0.2';
43
44
45
* @var string URL to send event to.
tests/EventTests/EventBuilderTest.php
@@ -69,7 +69,7 @@ protected function setUp() : void
69
]],
70
'revision' => '15',
71
'client_name' => 'php-sdk',
72
- 'client_version' => '4.0.1',
+ 'client_version' => '4.0.2',
73
'anonymize_ip'=> false,
74
'enrich_decisions' => true,
75
];
0 commit comments