Address PHPStan warning in 'update.php'.
------ -------------------------------------- Line update.php ------ -------------------------------------- 213 While loop condition is always true. ------ --------------------------------------
This commit is contained in:
parent
3cc60a0219
commit
57436ee0c1
|
@ -210,6 +210,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($options["daemon"])) {
|
if (isset($options["daemon"])) {
|
||||||
|
// @phpstan-ignore-next-line
|
||||||
while (true) {
|
while (true) {
|
||||||
$quiet = (isset($options["quiet"])) ? "--quiet" : "";
|
$quiet = (isset($options["quiet"])) ? "--quiet" : "";
|
||||||
$log = isset($options['log']) ? '--log '.$options['log'] : '';
|
$log = isset($options['log']) ? '--log '.$options['log'] : '';
|
||||||
|
|
Loading…
Reference in New Issue