aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/command/about_command.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/command/about_command.rs')
-rw-r--r--crates/shirabe/src/command/about_command.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/crates/shirabe/src/command/about_command.rs b/crates/shirabe/src/command/about_command.rs
index 3e74d6e..e26e41e 100644
--- a/crates/shirabe/src/command/about_command.rs
+++ b/crates/shirabe/src/command/about_command.rs
@@ -22,7 +22,11 @@ impl AboutCommand {
.set_help("<info>php composer.phar about</info>");
}
- pub fn execute(&mut self, input: &dyn InputInterface, output: &dyn OutputInterface) -> i64 {
+ pub fn execute(
+ &mut self,
+ input: std::rc::Rc<std::cell::RefCell<dyn InputInterface>>,
+ output: std::rc::Rc<std::cell::RefCell<dyn OutputInterface>>,
+ ) -> i64 {
let composer_version = composer::get_version();
let _ = (input, output);