Skip to content

Commit

Permalink
Issue #48: Fixed server value replacement error caused by non-string …
Browse files Browse the repository at this point in the history
…values

Signed-off-by: alexmerlin <[email protected]>
  • Loading branch information
alexmerlin committed Feb 28, 2025
1 parent 29cb03f commit 97c8eff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Extra/Processor/ServerProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function process(array $data): array
continue;
}

$return[$serverKey] = $this->replace($this->replacementStrategy, $serverValue);
$return[$serverKey] = $this->replace($this->replacementStrategy, (string) $serverValue);
}

return $return;
Expand Down

0 comments on commit 97c8eff

Please sign in to comment.