From: Hypolite Petovan Date: Wed, 29 Jan 2025 14:56:06 +0000 (-0500) Subject: Add expected final return in Console\Storage->doMove X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=13214843d89a048fb16cf430f5f2f3fca6ebf57f;p=friendica.git Add expected final return in Console\Storage->doMove - Address https://github.com/friendica/friendica/issues/14646#issuecomment-2621372228 --- diff --git a/src/Console/Storage.php b/src/Console/Storage.php index 572f10cc88..58d20d06b2 100644 --- a/src/Console/Storage.php +++ b/src/Console/Storage.php @@ -192,5 +192,7 @@ HELP; } while ($moved); $this->out(sprintf(date('[Y-m-d H:i:s] ') . 'Moved %d files total', $total)); + + return 0; } }