Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/AppInfo/Application.php')
-rw-r--r--lib/AppInfo/Application.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php
index 7c3843204..0a40655e3 100644
--- a/lib/AppInfo/Application.php
+++ b/lib/AppInfo/Application.php
@@ -1,4 +1,5 @@
<?php
+
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>
@@ -38,7 +39,7 @@ use OCP\AppFramework\Bootstrap\IRegistrationContext;
use OCP\DirectEditing\RegisterDirectEditorEvent;
class Application extends App implements IBootstrap {
- const APP_NAME = 'text';
+ public const APP_NAME = 'text';
public function __construct(array $params = []) {
parent::__construct(self::APP_NAME, $params);
@@ -54,4 +55,3 @@ class Application extends App implements IBootstrap {
public function boot(IBootContext $context): void {
}
}
-