Skip to content

Commit

Permalink
Merge pull request #9 from answear/ANS-15364-remove-slash-from-url-br
Browse files Browse the repository at this point in the history
ANS-15364 remove slash from url
  • Loading branch information
ropczan authored Nov 3, 2023
2 parents 4cc6485 + 02681d7 commit 918a61e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Service/PUDOList.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ public function __construct(
$this->PUDOFactory = $PUDOFactory;
$this->configProvider = $configProvider;
$this->client = $client ?? new Client(
[
'base_uri' => $configProvider->getUrl() . '/',
'http_errors' => false,
'timeout' => $configProvider->getRequestTimeout(),
]
);
[
'base_uri' => $configProvider->getUrl(),
'http_errors' => false,
'timeout' => $configProvider->getRequestTimeout(),
]
);
}

/**
Expand Down

0 comments on commit 918a61e

Please sign in to comment.