aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/console/application.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-06-11 02:39:35 +0900
committernsfisis <nsfisis@gmail.com>2026-06-11 02:39:35 +0900
commit6ae7e0d4b3eaf20e2d2cd3d000cf61ab0c9b6e83 (patch)
treee39261f4aa7314fe8c75142670c76591cdaccb92 /crates/shirabe-external-packages/src/symfony/console/application.rs
parent5d3232a80be4b989e89cc7ae4e3642cc5acae030 (diff)
downloadphp-shirabe-6ae7e0d4b3eaf20e2d2cd3d000cf61ab0c9b6e83.tar.gz
php-shirabe-6ae7e0d4b3eaf20e2d2cd3d000cf61ab0c9b6e83.tar.zst
php-shirabe-6ae7e0d4b3eaf20e2d2cd3d000cf61ab0c9b6e83.zip
feat(console): resolve phase-b TODOs in doRun and IO wiring
Wire up ConsoleIO with HelperSet/QuestionHelper, register the ErrorHandler with the IO instance, and fall back to a default output in run(). Replace resolved phase-b TODOs across the console, command, io, factory, installer, dependency_resolver, and util modules; reclassify the remaining blockers (typed Symfony command registry, stdin resource caching) as phase-c. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe-external-packages/src/symfony/console/application.rs')
-rw-r--r--crates/shirabe-external-packages/src/symfony/console/application.rs25
1 files changed, 25 insertions, 0 deletions
diff --git a/crates/shirabe-external-packages/src/symfony/console/application.rs b/crates/shirabe-external-packages/src/symfony/console/application.rs
index f937473..a939bee 100644
--- a/crates/shirabe-external-packages/src/symfony/console/application.rs
+++ b/crates/shirabe-external-packages/src/symfony/console/application.rs
@@ -1,3 +1,4 @@
+use crate::symfony::console::input::InputDefinition;
use crate::symfony::console::input::InputInterface;
use crate::symfony::console::output::OutputInterface;
use shirabe_php_shim::PhpMixed;
@@ -105,4 +106,28 @@ impl Application {
pub fn has(&self, _name: &str) -> bool {
todo!()
}
+
+ pub fn do_run(
+ &mut self,
+ _input: std::rc::Rc<std::cell::RefCell<dyn InputInterface>>,
+ _output: std::rc::Rc<std::cell::RefCell<dyn OutputInterface>>,
+ ) -> anyhow::Result<i64> {
+ todo!()
+ }
+
+ pub fn get_help(&self) -> String {
+ todo!()
+ }
+
+ pub fn are_exceptions_caught(&self) -> bool {
+ todo!()
+ }
+
+ pub fn get_default_input_definition(&self) -> InputDefinition {
+ todo!()
+ }
+
+ pub fn get_default_commands(&self) -> Vec<PhpMixed> {
+ todo!()
+ }
}