mirror of
https://github.com/nextcloud/server.git
synced 2026-04-25 08:08:33 -04:00
Merge pull request #26559 from J0WI/updno-strict
Updatenotification: add missing strict_types
This commit is contained in:
commit
ec66943efd
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