Skip to content

Commit

Permalink
Merge pull request #180 from spryker-sdk/bugfix/frw-7460/master-inter…
Browse files Browse the repository at this point in the history
…gator-type-error

FRW-7460: Fixed multitype in AbstractValueExtractorStrategy
  • Loading branch information
vol4onok committed Feb 27, 2024
2 parents d1b464f + 2139c6d commit 277715e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ protected function createArrayStringFromResult(array $array): string
if (is_string($key) && !$this->isConstant($key)) {
$key = sprintf('\'%s\'', $key);
}
if (is_string($key) && !$this->isConstant($value)) {
if (is_string($value) && !$this->isConstant($value)) {
$value = sprintf('\'%s\'', $value);
}

Expand Down

0 comments on commit 277715e

Please sign in to comment.