Skip to content

Commit

Permalink
Fix return type
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick477 committed Jul 4, 2018
1 parent 2132a66 commit 907d5bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Entity/ShippingGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public function getConfigValue(string $key): ?string
$key
));

return $this->config[$key];
return (string) $this->config[$key];
}

/**
Expand Down

0 comments on commit 907d5bb

Please sign in to comment.