]> git.mxchange.org Git - friendica.git/commitdiff
Add expected final return in Console\Storage->doMove
authorHypolite Petovan <hypolite@mrpetovan.com>
Wed, 29 Jan 2025 14:56:06 +0000 (09:56 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Wed, 29 Jan 2025 14:56:06 +0000 (09:56 -0500)
- Address https://github.com/friendica/friendica/issues/14646#issuecomment-2621372228

src/Console/Storage.php

index 572f10cc88e98077e7ee6f627341d9c250d898f4..58d20d06b228ef2cd79cb71d08979436a6993130 100644 (file)
@@ -192,5 +192,7 @@ HELP;
                } while ($moved);
 
                $this->out(sprintf(date('[Y-m-d H:i:s] ') . 'Moved %d files total', $total));
+
+               return 0;
        }
 }