Merge pull request #14752 from MrPetovan/bug/fatal-errors

Add expected final return in Console\Storage->doMove
This commit is contained in:
Tobias Diekershoff 2025-01-29 22:57:51 +01:00 committed by GitHub
commit db93456027
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View 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;
}
}