Skip to content

Commit 97c8eff

Browse files
committed
Issue #48: Fixed server value replacement error caused by non-string values
Signed-off-by: alexmerlin <alex.merlin.1985@gmail.com>
1 parent 29cb03f commit 97c8eff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Extra/Processor/ServerProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function process(array $data): array
4141
continue;
4242
}
4343

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

4747
return $return;

0 commit comments

Comments
 (0)