From d8e5783e8c341e38a0b8d572c8482b264cacb9c0 Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Fri, 18 Nov 2011 16:00:22 +0100 Subject: [PATCH] [feature/extension-manager] Document what the class loader stores in cache PHPBB3-10323 --- phpBB/includes/class_loader.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/phpBB/includes/class_loader.php b/phpBB/includes/class_loader.php index 2db807eb77..bc268d342e 100644 --- a/phpBB/includes/class_loader.php +++ b/phpBB/includes/class_loader.php @@ -38,6 +38,8 @@ class phpbb_class_loader /** * A map of looked up class names to paths relative to $this->path. + * This map is stored in cache and looked up if the cache is available. + * * @var array */ private $cached_paths = array();