Skip to content

Commit 4a8a04f

Browse files
style(*): Code review rename variable
1 parent 2e4aa2d commit 4a8a04f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/AbstractBounce.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,14 +309,14 @@ protected function handleRemediation(string $remediation, string $ip)
309309
/**
310310
* Return cached variables associated to an IP.
311311
*/
312-
public function getIpVariables(string $keyPrefix, array $names, $ip)
312+
public function getIpVariables(string $cacheTag, array $names, $ip)
313313
{
314314
if (!$this->bouncer) {
315315
throw new BouncerException('Bouncer must be instantiated to get cache data.');
316316
}
317317
$apiCache = $this->bouncer->getApiCache();
318318

319-
return $apiCache->getIpVariables($keyPrefix, $names, $ip);
319+
return $apiCache->getIpVariables($cacheTag, $names, $ip);
320320
}
321321

322322
/**

0 commit comments

Comments
 (0)