summaryrefslogtreecommitdiff
path: root/app/Module.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2015-02-06 14:29:38 +0000
committerGreg Roach <fisharebest@gmail.com>2015-02-06 14:29:38 +0000
commitb5b860b3207135e684335676c4a7df900bd0df82 (patch)
treeec6fbe18991e6e617c5d8f2d62bd4c3b4d8667f5 /app/Module.php
parent5fec6c0a91ca5b48737343f0c80bcad73648fa41 (diff)
downloadwebtrees-b5b860b3207135e684335676c4a7df900bd0df82.tar.gz
webtrees-b5b860b3207135e684335676c4a7df900bd0df82.tar.bz2
webtrees-b5b860b3207135e684335676c4a7df900bd0df82.zip
PHPDoc
Diffstat (limited to 'app/Module.php')
-rw-r--r--app/Module.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Module.php b/app/Module.php
index c9fdf2b8b4..992360be66 100644
--- a/app/Module.php
+++ b/app/Module.php
@@ -334,7 +334,7 @@ abstract class Module {
* @param integer $tree_id
* @param integer $access_level
*
- * @return $controller = new ModuleReportInterface[]
+ * @return ModuleReportInterface[]
*/
public static function getActiveReports($tree_id = WT_GED_ID, $access_level = WT_USER_ACCESS_LEVEL) {
static $reports;
@@ -352,7 +352,7 @@ abstract class Module {
* @param integer $tree_id
* @param integer $access_level
*
- * @return oduleSidebarInterface[]
+ * @return ModuleSidebarInterface[]
*/
public static function getActiveSidebars($tree_id = WT_GED_ID, $access_level = WT_USER_ACCESS_LEVEL) {
static $sidebars;
@@ -388,7 +388,7 @@ abstract class Module {
* @param integer $tree_id
* @param integer $access_level
*
- * @return $controller = new ModuleThemeInterface[]
+ * @return ModuleThemeInterface[]
*/
public static function getActiveThemes($tree_id = WT_GED_ID, $access_level = WT_USER_ACCESS_LEVEL) {
static $themes;