Elgg  Version master
AccessCache.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Elgg\Cache;
4 
5 use Elgg\Config;
6 
13 class AccessCache extends CacheService {
14 
20  public function __construct(protected Config $config) {
22 
23  $this->cache = new CompositeCache('access_cache', $this->config, $flags);
24  }
25 }
$config
Advanced site settings, debugging section.
Definition: debugging.php:6
Composite cache pool.
__construct(protected Config $config)
Constructor.
Definition: AccessCache.php:20