aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/command/depends_command.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-17 15:52:38 +0900
committernsfisis <nsfisis@gmail.com>2026-05-17 15:52:38 +0900
commit2ca6b56c4f60cd0135e0c98cea3fc78fbd1c4985 (patch)
treee360efea90ff54527467b6ea280ae0f6fc8f0c18 /crates/shirabe/src/command/depends_command.rs
parentd28b348426ccbdf48c57c0c4127a4fad18fa663d (diff)
downloadphp-shirabe-2ca6b56c4f60cd0135e0c98cea3fc78fbd1c4985.tar.gz
php-shirabe-2ca6b56c4f60cd0135e0c98cea3fc78fbd1c4985.tar.zst
php-shirabe-2ca6b56c4f60cd0135e0c98cea3fc78fbd1c4985.zip
fix(compile): add missing use declarations for Command, Composer, IOInterface, etc.
Diffstat (limited to 'crates/shirabe/src/command/depends_command.rs')
-rw-r--r--crates/shirabe/src/command/depends_command.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/crates/shirabe/src/command/depends_command.rs b/crates/shirabe/src/command/depends_command.rs
index f83fe00..8809fbd 100644
--- a/crates/shirabe/src/command/depends_command.rs
+++ b/crates/shirabe/src/command/depends_command.rs
@@ -1,6 +1,11 @@
//! ref: composer/src/Composer/Command/DependsCommand.php
+use shirabe_external_packages::symfony::component::console::command::command::Command;
+
+use crate::command::base_command::BaseCommand;
use crate::command::base_dependency_command::BaseDependencyCommand;
+use crate::composer::Composer;
+use crate::io::io_interface::IOInterface;
use crate::command::completion_trait::CompletionTrait;
use crate::console::input::input_argument::InputArgument;
use crate::console::input::input_option::InputOption;