diff options
Diffstat (limited to 'apps')
-rw-r--r-- | apps/updatenotification/appinfo/routes.php | 3 | ||||
-rw-r--r-- | apps/updatenotification/lib/Command/Check.php | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/apps/updatenotification/appinfo/routes.php b/apps/updatenotification/appinfo/routes.php index 10835164c7b..c7debdb71e0 100644 --- a/apps/updatenotification/appinfo/routes.php +++ b/apps/updatenotification/appinfo/routes.php @@ -1,4 +1,7 @@ <?php + +declare(strict_types=1); + /** * @copyright Copyright (c) 2016, ownCloud, Inc. * diff --git a/apps/updatenotification/lib/Command/Check.php b/apps/updatenotification/lib/Command/Check.php index 351350ba3ee..900481383f3 100644 --- a/apps/updatenotification/lib/Command/Check.php +++ b/apps/updatenotification/lib/Command/Check.php @@ -1,4 +1,7 @@ <?php + +declare(strict_types=1); + /** * @copyright Copyright (c) 2018, Tobia De Koninck (tobia@ledfan.be) * @@ -56,7 +59,7 @@ class Check extends Command { $this->updateChecker = $updateChecker; } - protected function configure() { + protected function configure(): void { $this ->setName('update:check') ->setDescription('Check for server and app updates') |