Skip to content

Commit

Permalink
ignore the error on this line - we know that fetcher has getCacheKey …
Browse files Browse the repository at this point in the history
…method
  • Loading branch information
bshaffer committed Feb 20, 2024
1 parent 53d9730 commit 33f0b08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FetchAuthTokenCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ private function saveAuthTokenInCache($authToken, $authUri = null)

private function getCachedUniverseDomain(GetUniverseDomainInterface $fetcher): string
{
$cacheKey = $this->getFullCacheKey($fetcher->getCacheKey() . 'universe_domain');
$cacheKey = $this->getFullCacheKey($fetcher->getCacheKey() . 'universe_domain'); // @phpstan-ignore-line
if ($universeDomain = $this->getCachedValue($cacheKey)) {
return $universeDomain;
}
Expand Down

0 comments on commit 33f0b08

Please sign in to comment.