Skip to content

Commit

Permalink
rename to be consistent with posthog-js
Browse files Browse the repository at this point in the history
neilkakkar committed Mar 8, 2024
1 parent 2c6f466 commit 938e32c
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Client.php
Original file line number Diff line number Diff line change
@@ -89,7 +89,7 @@ public function __construct(
null,
(int) ($options['timeout'] ?? 10000)
);
$this->featureFlagsRequestTimeout = (int) ($options['feature_flags_request_timeout_ms'] ?? 3000);
$this->featureFlagsRequestTimeout = (int) ($options['feature_flag_request_timeout_ms'] ?? 3000);
$this->featureFlags = [];
$this->groupTypeMapping = [];
$this->distinctIdsFeatureFlagsReported = new SizeLimitedHash(SIZE_LIMIT);
2 changes: 1 addition & 1 deletion test/PostHogTest.php
Original file line number Diff line number Diff line change
@@ -89,7 +89,7 @@ public function testCaptureWithSendFeatureFlagsOption(): void
self::FAKE_API_KEY,
[
"debug" => true,
"feature_flags_request_timeout_ms" => 1234,
"feature_flag_request_timeout_ms" => 1234,
],
$this->http_client,
"test"

0 comments on commit 938e32c

Please sign in to comment.