From 11752d70594084e054d11ed74d25e96646e1e304 Mon Sep 17 00:00:00 2001 From: Philipp Holzer Date: Sun, 11 Aug 2019 14:33:25 +0200 Subject: [PATCH] move backend constant --- src/App/Module.php | 41 ++++++++++++++++++++--------------------- 1 file changed, 20 insertions(+), 21 deletions(-) diff --git a/src/App/Module.php b/src/App/Module.php index cf2c453ce7..63be2f651d 100644 --- a/src/App/Module.php +++ b/src/App/Module.php @@ -17,27 +17,6 @@ class Module { const DEFAULT = 'home'; const DEFAULT_CLASS = Home::class; - - /** - * @var string The module name - */ - private $module; - - /** - * @var BaseObject The module class - */ - private $module_class; - - /** - * @var bool true, if the module is a backend module - */ - private $isBackend; - - /** - * @var bool true, if the loaded addon is private, so we have to print out not allowed - */ - private $printNotAllowedAddon; - /** * A list of modules, which are backend methods * @@ -71,6 +50,26 @@ class Module 'xrd', ]; + /** + * @var string The module name + */ + private $module; + + /** + * @var BaseObject The module class + */ + private $module_class; + + /** + * @var bool true, if the module is a backend module + */ + private $isBackend; + + /** + * @var bool true, if the loaded addon is private, so we have to print out not allowed + */ + private $printNotAllowedAddon; + /** * @return string */