Updatenotification: add missing strict_types
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
This commit is contained in:
parent
f031dd61c1
commit
8fd2be9655
|
@ -1,4 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
||||||
*
|
*
|
||||||
|
|
|
@ -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')
|
||||||
|
|
Loading…
Reference in New Issue