1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 20:13:22 +01:00

[feature/extension-manager] Add documentation on caching in ext finder

PHPBB3-10323
This commit is contained in:
Nils Adermann 2011-11-18 17:30:23 +01:00
parent 0c443a089c
commit 21117c69f3

View File

@ -26,6 +26,13 @@ class phpbb_extension_finder
protected $phpbb_root_path;
protected $cache;
protected $phpEx;
/**
* The cache variable name used to store $this->cached_queries in $this->cache.
*
* Allows the use of multiple differently configured finders with the same cache.
* @var string
*/
protected $cache_name;
/**