function ProgressIndicator::getCurrentTimeInMilliseconds
2 calls to ProgressIndicator::getCurrentTimeInMilliseconds()
- ProgressIndicator::advance in vendor/
symfony/ console/ Helper/ ProgressIndicator.php - Advances the indicator.
- ProgressIndicator::start in vendor/
symfony/ console/ Helper/ ProgressIndicator.php - Starts the indicator output.
File
-
vendor/
symfony/ console/ Helper/ ProgressIndicator.php, line 225
Class
- ProgressIndicator
- @author Kevin Bond <kevinbond@gmail.com>
Namespace
Symfony\Component\Console\HelperCode
private function getCurrentTimeInMilliseconds() : float {
return round(microtime(true) * 1000);
}