cachePath() public static method

Returns the cache file path
public static cachePath ( $config ) : string
$config
return string
 /**
  * @dataProvider CachePathProvider
  */
 public function testCachePath($config, $expected)
 {
     $result = AuthorizationCache::cachePath($config);
     $this->assertContains($expected, $result);
 }