aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/command/reinstall_command.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-17 16:17:20 +0900
committernsfisis <nsfisis@gmail.com>2026-05-17 16:17:20 +0900
commita7ba9cac5f0fb0c5cf3befc61d2624d0a51bd2ad (patch)
treef830f5591c3151f56e2ff7bde263d6df8287d953 /crates/shirabe/src/command/reinstall_command.rs
parent2cc92563256ae04bfc227b848a243acc3fcdcc20 (diff)
downloadphp-shirabe-a7ba9cac5f0fb0c5cf3befc61d2624d0a51bd2ad.tar.gz
php-shirabe-a7ba9cac5f0fb0c5cf3befc61d2624d0a51bd2ad.tar.zst
php-shirabe-a7ba9cac5f0fb0c5cf3befc61d2624d0a51bd2ad.zip
fix(compile): add stubs for missing trait implementations
Diffstat (limited to 'crates/shirabe/src/command/reinstall_command.rs')
-rw-r--r--crates/shirabe/src/command/reinstall_command.rs10
1 files changed, 9 insertions, 1 deletions
diff --git a/crates/shirabe/src/command/reinstall_command.rs b/crates/shirabe/src/command/reinstall_command.rs
index e0a8843..a6febd4 100644
--- a/crates/shirabe/src/command/reinstall_command.rs
+++ b/crates/shirabe/src/command/reinstall_command.rs
@@ -32,7 +32,15 @@ pub struct ReinstallCommand {
io: Option<Box<dyn IOInterface>>,
}
-impl CompletionTrait for ReinstallCommand {}
+impl CompletionTrait for ReinstallCommand {
+ fn require_composer(
+ &self,
+ disable_plugins: Option<bool>,
+ disable_scripts: Option<bool>,
+ ) -> Composer {
+ todo!()
+ }
+}
impl ReinstallCommand {
pub fn configure(&mut self) {