From: Philipp Holzer Date: Sun, 11 Aug 2019 12:33:25 +0000 (+0200) Subject: move backend constant X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=11752d70594084e054d11ed74d25e96646e1e304;p=friendica.git move backend constant --- 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 */