aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/console/application.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/console/application.rs')
-rw-r--r--crates/shirabe/src/console/application.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/crates/shirabe/src/console/application.rs b/crates/shirabe/src/console/application.rs
index 7c527c6..379add7 100644
--- a/crates/shirabe/src/console/application.rs
+++ b/crates/shirabe/src/console/application.rs
@@ -2475,12 +2475,7 @@ impl ApplicationHandle {
.has_parameter_option(PhpMixed::from(vec!["--profile"]), false)
{
start_time = Some(microtime());
- // PHP: $this->io->enableDebugging($startTime).
- // TODO(phase-c): enableDebugging exists only on ConsoleIO, not on IOInterface,
- // and self.io is still the NullIO because the ConsoleIO construction above is
- // deferred (Symfony HelperSet/Helper modelling). Once self.io is the real
- // ConsoleIO this becomes a concrete-type call on it.
- let _ = start_time.unwrap();
+ io.borrow_mut().enable_debugging(start_time.unwrap());
}
let result = self.base_do_run(input.clone(), output.clone())?;