From a1c7e6908a26e10f6e1f23a51721664b5e2d838d Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 17 May 2026 02:53:53 +0900 Subject: chore(style): cargo fmt --- crates/shirabe/src/plugin/command_event.rs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'crates/shirabe/src/plugin/command_event.rs') diff --git a/crates/shirabe/src/plugin/command_event.rs b/crates/shirabe/src/plugin/command_event.rs index 0eb952a..aa5b366 100644 --- a/crates/shirabe/src/plugin/command_event.rs +++ b/crates/shirabe/src/plugin/command_event.rs @@ -1,8 +1,8 @@ //! ref: composer/src/Composer/Plugin/CommandEvent.php +use crate::event_dispatcher::event::Event; use shirabe_external_packages::symfony::console::input::input_interface::InputInterface; use shirabe_external_packages::symfony::console::output::output_interface::OutputInterface; -use crate::event_dispatcher::event::Event; use shirabe_php_shim::PhpMixed; #[derive(Debug)] @@ -23,7 +23,12 @@ impl CommandEvent { flags: Vec, ) -> Self { let inner = Event::new(name, args, flags); - Self { inner, command_name, input, output } + Self { + inner, + command_name, + input, + output, + } } pub fn get_input(&self) -> &dyn InputInterface { -- cgit v1.3.1