diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-17 16:17:20 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-17 16:17:20 +0900 |
| commit | a7ba9cac5f0fb0c5cf3befc61d2624d0a51bd2ad (patch) | |
| tree | f830f5591c3151f56e2ff7bde263d6df8287d953 /crates/shirabe/src/command/archive_command.rs | |
| parent | 2cc92563256ae04bfc227b848a243acc3fcdcc20 (diff) | |
| download | php-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/archive_command.rs')
| -rw-r--r-- | crates/shirabe/src/command/archive_command.rs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/crates/shirabe/src/command/archive_command.rs b/crates/shirabe/src/command/archive_command.rs index 1a85df4..b271051 100644 --- a/crates/shirabe/src/command/archive_command.rs +++ b/crates/shirabe/src/command/archive_command.rs @@ -39,7 +39,15 @@ pub struct ArchiveCommand { io: Option<Box<dyn IOInterface>>, } -impl CompletionTrait for ArchiveCommand {} +impl CompletionTrait for ArchiveCommand { + fn require_composer( + &self, + disable_plugins: Option<bool>, + disable_scripts: Option<bool>, + ) -> Composer { + todo!() + } +} impl ArchiveCommand { const FORMATS: &'static [&'static str] = &["tar", "tar.gz", "tar.bz2", "zip"]; |
