From f26a6053fa79fd419808f616d3b6d4a8e6769a0c Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Wed, 3 Aug 2011 17:13:40 +0200 Subject: [PATCH] Additional small documentation updates of system classes --- .../lib/system/language/LanguageFactory.class.php | 6 +++--- .../files/lib/system/menu/TreeMenu.class.php | 15 ++++++--------- 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/wcfsetup/install/files/lib/system/language/LanguageFactory.class.php b/wcfsetup/install/files/lib/system/language/LanguageFactory.class.php index f426954fa7..c375e86b8f 100644 --- a/wcfsetup/install/files/lib/system/language/LanguageFactory.class.php +++ b/wcfsetup/install/files/lib/system/language/LanguageFactory.class.php @@ -18,19 +18,19 @@ use wcf\util\StringUtil; */ abstract class LanguageFactory { /** - * Language cache + * language cache * @var array */ private static $cache = null; /** - * Initialized languages + * initialized languages * @var array */ private static $languages = array(); /** - * Active template scripting compiler + * active template scripting compiler * @var wcf\system\template\TemplateScriptingCompiler */ private static $scriptingCompiler = null; diff --git a/wcfsetup/install/files/lib/system/menu/TreeMenu.class.php b/wcfsetup/install/files/lib/system/menu/TreeMenu.class.php index d09fc74b69..c854c528f8 100644 --- a/wcfsetup/install/files/lib/system/menu/TreeMenu.class.php +++ b/wcfsetup/install/files/lib/system/menu/TreeMenu.class.php @@ -17,23 +17,20 @@ use wcf\util\FileUtil; */ abstract class TreeMenu extends SingletonFactory { /** - * List of visible menu items. - * - * @var array + * list of visible menu items + * @var array */ public $menuItemList = array(); /** - * List of active menu items. - * - * @var array + * list of the names of the active menu items + * @var array */ public $activeMenuItems = array(); /** - * List of all menu items. - * - * @var array + * list of all menu items + * @var array */ public $menuItems = null; -- 2.20.1