aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/command/update_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/update_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/update_command.rs')
-rw-r--r--crates/shirabe/src/command/update_command.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/shirabe/src/command/update_command.rs b/crates/shirabe/src/command/update_command.rs
index dca0d07..d1c6401 100644
--- a/crates/shirabe/src/command/update_command.rs
+++ b/crates/shirabe/src/command/update_command.rs
@@ -14,6 +14,8 @@ use shirabe_php_shim::{
use shirabe_semver::constraint::multi_constraint::MultiConstraint;
use shirabe_semver::intervals::Intervals;
+use shirabe_external_packages::symfony::component::console::command::command::Command;
+
use crate::advisory::auditor::Auditor;
use crate::command::base_command::BaseCommand;
use crate::command::bump_command::BumpCommand;