From 561924db750cbb4e4c183f9616472ed9a5b0fc7f Mon Sep 17 00:00:00 2001 From: nsfisis Date: Wed, 12 Aug 2026 00:19:10 +0900 Subject: docs(todo): retag TODO markers by root cause Co-Authored-By: Claude Opus 5 (1M context) --- crates/shirabe/src/command/script_alias_command.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crates/shirabe/src/command/script_alias_command.rs') diff --git a/crates/shirabe/src/command/script_alias_command.rs b/crates/shirabe/src/command/script_alias_command.rs index e4418b53..b10e1671 100644 --- a/crates/shirabe/src/command/script_alias_command.rs +++ b/crates/shirabe/src/command/script_alias_command.rs @@ -46,7 +46,7 @@ impl ScriptAliasCommand { // PHP also calls parent::__construct() (Symfony Command base) and // $this->ignoreValidationErrors(). - // TODO(phase-c): both are Symfony Command base-class operations — the constructor sets up + // TODO(symfony): both are Symfony Command base-class operations — the constructor sets up // the command's name/definition/application state and ignoreValidationErrors() flips a flag // on it. Composer's BaseCommand carries no such Symfony Command state yet (the Symfony // Command base is an intentional todo!() stub), so there is nothing to initialize here. @@ -118,7 +118,7 @@ impl Command for ScriptAliasCommand { let args = input.borrow().get_arguments(); - // TODO(phase-c): InputInterface has_to_string/get_class_name not modeled in Rust + // TODO(symfony): InputInterface has_to_string/get_class_name not modeled in Rust // TODO remove for Symfony 6+ as it is then in the interface if false { return Err(LogicException::new( @@ -136,7 +136,7 @@ impl Command for ScriptAliasCommand { Platform::put_env("COMPOSER_DEV_MODE", if dev_mode { "1" } else { "0" }); - // TODO(phase-c): InputInterface lacks to_string; use a placeholder until it is modeled. + // TODO(symfony): InputInterface lacks to_string; use a placeholder until it is modeled. let input_as_string = String::new(); let _ = input; let script_alias_input = Preg::replace4(php_regex!(r"{^\S+ ?}"), "", &input_as_string, 1); -- cgit v1.3.1-4-g156e