Skip to content

Commit

Permalink
Fix Phpstan error
Browse files Browse the repository at this point in the history
  • Loading branch information
David Kalianko committed Sep 19, 2024
1 parent b90afbf commit b86592d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DigiSignClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ private function createUri(string $uri, array $options): UriInterface
{
// replace uri parameters with its values
preg_match_all('/{(\w+)}/', $uri, $matches);
$searches = $matches[1] ?? [];
$searches = $matches[1];
$replaces = [];

foreach ($searches as $search) {
Expand Down

0 comments on commit b86592d

Please sign in to comment.