Skip to content

Commit

Permalink
feat: cached openid-configuration
Browse files Browse the repository at this point in the history
unit tests enhancements & fully local
  • Loading branch information
hschoenenberger committed Dec 6, 2024
1 parent ce26688 commit 6147b14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Provider/PrestaShop.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public function getWellKnown()
try {
$this->wellKnown = new WellKnown(
json_decode(
$this->cachedWellKnown ?
($this->cachedWellKnown !== null) ?
$this->getCachedWellKnown() :
$this->fetchWellKnown($this->getOauth2Url()),
true
Expand Down

0 comments on commit 6147b14

Please sign in to comment.