]> git.mxchange.org Git - friendica.git/commitdiff
Fix code style
authorArt4 <art4@wlabs.de>
Sun, 12 Jan 2025 20:48:53 +0000 (20:48 +0000)
committerArt4 <art4@wlabs.de>
Sun, 12 Jan 2025 20:48:53 +0000 (20:48 +0000)
src/Console/Addon.php

index 1623ab13f040ce2e966164bdd7b58b3bcf567912..e4bdeb052b50554f286d0cac2dbc829fdf8d9301 100644 (file)
@@ -60,9 +60,9 @@ HELP;
        {
                parent::__construct($argv);
 
-               $this->appMode     = $appMode;
-               $this->l10n        = $l10n;
-               $this->dba         = $dba;
+               $this->appMode = $appMode;
+               $this->l10n    = $l10n;
+               $this->dba     = $dba;
 
                AddonCore::loadAddons();
        }
@@ -124,7 +124,7 @@ HELP;
 
                foreach (AddonCore::getAvailableList() as $addon) {
                        $addon_name = $addon[0];
-                       $enabled = AddonCore::isEnabled($addon_name);
+                       $enabled    = AddonCore::isEnabled($addon_name);
 
                        if ($subCmd === 'all') {
                                $table->addRow([$addon_name, $enabled ? 'enabled' : 'disabled']);