aboutsummaryrefslogtreecommitdiffstats
path: root/maintenance/includes/TextPassDumper.php
diff options
context:
space:
mode:
authorTim Starling <tstarling@wikimedia.org>2023-12-08 10:08:12 +1100
committerTim Starling <tstarling@wikimedia.org>2023-12-12 09:22:45 +1100
commit9c02258a04c56f9b33d64da6fccd7b1cd6deb27a (patch)
treec22435d089376adcd5bb48583d6da047ef2bf9e4 /maintenance/includes/TextPassDumper.php
parente7782b52f32ab14378388ad0a5a5beb339f01f1f (diff)
downloadmediawikicore-9c02258a04c56f9b33d64da6fccd7b1cd6deb27a.tar.gz
mediawikicore-9c02258a04c56f9b33d64da6fccd7b1cd6deb27a.zip
Use thousands separators in selected integer literals
For readability. Allowed since PHP 7.4. I searched for integer literals of 6 or more digits, and also changed some nearby smaller numbers for consistency. Bug: T353205 Change-Id: I8518e04889ba8fd52e0f9476a74f8e3e1454b678
Diffstat (limited to 'maintenance/includes/TextPassDumper.php')
-rw-r--r--maintenance/includes/TextPassDumper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/maintenance/includes/TextPassDumper.php b/maintenance/includes/TextPassDumper.php
index a801f0850edf..ea684bbdc3e3 100644
--- a/maintenance/includes/TextPassDumper.php
+++ b/maintenance/includes/TextPassDumper.php
@@ -79,7 +79,7 @@ class TextPassDumper extends BackupDumper {
protected $failureTimeout = 5;
/** @var int In bytes. Maximum size to read from the stub in on go. */
- protected $bufferSize = 524288;
+ protected $bufferSize = 524_288;
/** @var array */
protected $php = [ PHP_BINARY ];