Update User migration docs for 32-bit support

Signed-off-by: Christopher Ng <chrng8@gmail.com>
This commit is contained in:
Christopher Ng
2023-05-26 17:10:37 -07:00
parent 63ef24a222
commit ab1421df09

View File

@@ -60,8 +60,9 @@ whenever a user export or import begins.
* Should be fast, favor performance over accuracy.
*
* @since 25.0.0
* @since 27.0.0 return value may overflow from int to float
*/
public function getEstimatedExportSize(IUser $user): int {
public function getEstimatedExportSize(IUser $user): int|float {
$size = 100; // 100KiB for user data JSON
return $size;
}