public function CacheDecorator::count in Auth0 Single Sign On 8.2
File
- vendor/
auth0/ auth0-php/ tests/ Helpers/ Cache/ CacheDecorator.php, line 46
Class
Namespace
Auth0\TestsCode
public function count($method) {
if (!isset($this->counter[$method])) {
return null;
}
return $this->counter[$method];
}