]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Maintenance.php
Apply suggestions from code review
[friendica.git] / src / Module / Maintenance.php
index 7fc32b5217d9f1f3a3afbffd61835f16eafc86f0..412723db318d89ffdfe1eb5a0e49ead59f372e61 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -34,7 +34,7 @@ use Friendica\Util\Strings;
  */
 class Maintenance extends BaseModule
 {
-       public static function content(array $parameters = [])
+       protected function content(array $request = []): string
        {
                $reason = DI::config()->get('system', 'maintenance_reason');
 
@@ -45,7 +45,7 @@ class Maintenance extends BaseModule
 
                $exception = new HTTPException\ServiceUnavailableException($reason);
 
-               header($_SERVER["SERVER_PROTOCOL"] . ' ' . $exception->getCode() . ' ' . DI::l10n()->t('System down for maintenance'));
+               header($_SERVER['SERVER_PROTOCOL'] . ' ' . $exception->getCode() . ' ' . DI::l10n()->t('System down for maintenance'));
 
                $tpl = Renderer::getMarkupTemplate('exception.tpl');