mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-23 19:50:40 -05:00
refactor: add literal separator to numbers
- This is for PHP7.4 + only - Adds an `_` as thousands separator in numbers
This commit is contained in:
@@ -107,7 +107,7 @@ trait ConsoleTools
|
||||
}
|
||||
|
||||
$process = new Process($command);
|
||||
$process->setTimeout(3600);
|
||||
$process->setTimeout(3_600);
|
||||
$process->start();
|
||||
|
||||
while ($process->isRunning()) {
|
||||
@@ -121,7 +121,7 @@ trait ConsoleTools
|
||||
$bar->advance();
|
||||
}
|
||||
|
||||
usleep(200000);
|
||||
usleep(200_000);
|
||||
}
|
||||
|
||||
if (!$silent) {
|
||||
|
||||
Reference in New Issue
Block a user