<?php microtime(bool $as_float = false): string|float
<?php protected function execute(InputInterface $input, OutputInterface $output): int { $start = microtime(true); renderUsing($output);
<?php private function getDuration(float $startTime): string { return number_format(microtime(true) - $startTime, 2); }