From 13214843d89a048fb16cf430f5f2f3fca6ebf57f Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Wed, 29 Jan 2025 09:56:06 -0500 Subject: [PATCH] Add expected final return in Console\Storage->doMove - Address https://github.com/friendica/friendica/issues/14646#issuecomment-2621372228 --- src/Console/Storage.php | 2 ++ 1 file changed, 2 insertions(+) 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; } }