[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 $path;
private $php_ext; private $php_ext;
private $cache; private $cache;
/**
* A map of looked up class names to paths relative to $this->path.
* @var array
*/
private $cached_paths = array(); private $cached_paths = array();
/** /**