aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/io/console_io.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/io/console_io.rs')
-rw-r--r--crates/shirabe/src/io/console_io.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe/src/io/console_io.rs b/crates/shirabe/src/io/console_io.rs
index 25ec02d..e6261c7 100644
--- a/crates/shirabe/src/io/console_io.rs
+++ b/crates/shirabe/src/io/console_io.rs
@@ -96,7 +96,7 @@ impl ConsoleIO {
let messages = if let Some(start_time) = self.start_time {
let memory_usage = (shirabe_php_shim::memory_get_usage() as f64) / 1024.0 / 1024.0;
- let time_spent = microtime(true) - start_time;
+ let time_spent = microtime() - start_time;
// PHP: array_map(fn ($message): string => sprintf(...), (array) $messages)
let arr: Vec<String> = match &messages {
PhpMixed::String(s) => vec![s.clone()],