mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
Updatenotification: add missing strict_types
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
This commit is contained in:
parent
f031dd61c1
commit
8fd2be9655
2 changed files with 7 additions and 1 deletions
|
|
@ -1,4 +1,7 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Reference in a new issue