1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-26 13:04:13 +02:00

[feature/extension-manager] Add docblock to cached paths map in class loader

PHPBB3-10323
This commit is contained in:
Nils Adermann
2011-11-18 15:57:51 +01:00
parent 7cdc4bba25
commit 91c0a0d426

View File

@ -35,6 +35,11 @@ class phpbb_class_loader
private $path;
private $php_ext;
private $cache;
/**
* A map of looked up class names to paths relative to $this->path.
* @var array
*/
private $cached_paths = array();
/**