From a7ba9cac5f0fb0c5cf3befc61d2624d0a51bd2ad Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 17 May 2026 16:17:20 +0900 Subject: fix(compile): add stubs for missing trait implementations --- crates/shirabe/src/command/prohibits_command.rs | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'crates/shirabe/src/command/prohibits_command.rs') diff --git a/crates/shirabe/src/command/prohibits_command.rs b/crates/shirabe/src/command/prohibits_command.rs index fb0de0a..ded5ba4 100644 --- a/crates/shirabe/src/command/prohibits_command.rs +++ b/crates/shirabe/src/command/prohibits_command.rs @@ -13,10 +13,22 @@ use shirabe_external_packages::symfony::console::input::input_interface::InputIn use shirabe_external_packages::symfony::console::output::output_interface::OutputInterface; pub struct ProhibitsCommand { + inner: Command, + composer: Option, + io: Option>, + colors: Vec, } -impl CompletionTrait for ProhibitsCommand {} +impl CompletionTrait for ProhibitsCommand { + fn require_composer( + &self, + disable_plugins: Option, + disable_scripts: Option, + ) -> Composer { + todo!() + } +} impl ProhibitsCommand { pub fn configure(&mut self) { -- cgit v1.3.1