Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
z4kn4fein committed Aug 5, 2022
1 parent c12ede1 commit 76276a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/ConfigCatClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
final class ConfigCatClient implements ClientInterface
{
/** @var string */
const SDK_VERSION = "6.0.0";
const SDK_VERSION = "6.1.0";

/** @var LoggerInterface */
private $logger;
Expand Down
6 changes: 2 additions & 4 deletions src/RolloutEvaluator.php
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,7 @@ private function logFormatError(
$comparator,
$comparisonValue,
Exception $exception
): string
{
): string {
$message = "Evaluating rule: [" . $comparisonAttribute . ":" . $userValue . "] " .
"[" . $this->comparatorTexts[$comparator] . "] " .
"[" . $comparisonValue . "] => SKIP rule. Validation error: " . $exception->getMessage() . ".";
Expand All @@ -363,8 +362,7 @@ private function logFormatErrorWithMessage(
$comparator,
$comparisonValue,
$message
): string
{
): string {
$message = "Evaluating rule: [" . $comparisonAttribute . ":" . $userValue . "] " .
"[" . $this->comparatorTexts[$comparator] . "] " .
"[" . $comparisonValue . "] => SKIP rule. Validation error: " . $message . ".";
Expand Down

0 comments on commit 76276a7

Please sign in to comment.