You are here

public function CacheDecorator::count in Auth0 Single Sign On 8.2

File

vendor/auth0/auth0-php/tests/Helpers/Cache/CacheDecorator.php, line 46

Class

CacheDecorator

Namespace

Auth0\Tests

Code

public function count($method) {
  if (!isset($this->counter[$method])) {
    return null;
  }
  return $this->counter[$method];
}