Skip to content

Commit c82b7c7

Browse files
committed
linter
1 parent 1eeb153 commit c82b7c7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/LaunchDarkly/FeatureRequesterBase.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ protected function putCachedString($namespace, $key, $data)
8383
}
8484
}
8585

86-
protected function makeCacheKey($namespace, $key) {
86+
protected function makeCacheKey($namespace, $key)
87+
{
8788
return self::CACHE_PREFIX . $namespace . ':' . $key;
8889
}
8990

src/LaunchDarkly/LDClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ private function getFeatureRequester($sdkKey, array $options)
108108
{
109109
if (isset($options['feature_requester']) && $options['feature_requester']) {
110110
$fr = $options['feature_requester'];
111-
} else if (isset($options['feature_requester_class']) && $options['feature_requester_class']) {
111+
} elseif (isset($options['feature_requester_class']) && $options['feature_requester_class']) {
112112
$fr = $options['feature_requester_class'];
113113
} else {
114114
$fr = GuzzleFeatureRequester::class;

0 commit comments

Comments
 (0)