Updatenotification: add missing strict_types

Signed-off-by: J0WI <J0WI@users.noreply.github.com>
This commit is contained in:
J0WI 2021-04-14 16:45:41 +02:00
parent f031dd61c1
commit 8fd2be9655
2 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,7 @@
<?php <?php
declare(strict_types=1);
/** /**
* @copyright Copyright (c) 2016, ownCloud, Inc. * @copyright Copyright (c) 2016, ownCloud, Inc.
* *

View File

@ -1,4 +1,7 @@
<?php <?php
declare(strict_types=1);
/** /**
* @copyright Copyright (c) 2018, Tobia De Koninck (tobia@ledfan.be) * @copyright Copyright (c) 2018, Tobia De Koninck (tobia@ledfan.be)
* *
@ -56,7 +59,7 @@ class Check extends Command {
$this->updateChecker = $updateChecker; $this->updateChecker = $updateChecker;
} }
protected function configure() { protected function configure(): void {
$this $this
->setName('update:check') ->setName('update:check')
->setDescription('Check for server and app updates') ->setDescription('Check for server and app updates')