aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/command/bump_command.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/command/bump_command.rs')
-rw-r--r--crates/shirabe/src/command/bump_command.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/crates/shirabe/src/command/bump_command.rs b/crates/shirabe/src/command/bump_command.rs
index 20df759f..78b1f627 100644
--- a/crates/shirabe/src/command/bump_command.rs
+++ b/crates/shirabe/src/command/bump_command.rs
@@ -21,7 +21,8 @@ use shirabe_external_packages::symfony::console::command::command::Command;
use shirabe_external_packages::symfony::console::input::InputInterface;
use shirabe_external_packages::symfony::console::output::OutputInterface;
use shirabe_php_shim::{
- PhpMixed, file_get_contents, file_put_contents, is_writable, php_regex, strtolower,
+ PhpMixed, file_get_contents, file_put_contents, impl_php_class, is_writable, php_regex,
+ strtolower,
};
#[derive(Debug)]
@@ -29,6 +30,8 @@ pub struct BumpCommand {
base_command_data: BaseCommandData,
}
+impl_php_class!(BumpCommand, r"Composer\Command\BumpCommand");
+
impl Default for BumpCommand {
fn default() -> Self {
Self::new()
@@ -445,10 +448,7 @@ impl Command for BumpCommand {
crate::command::base_command::base_command_complete(self, input, suggestions)
}
- shirabe_external_packages::delegate_command_trait_impls_to_inner!(
- base_command_data,
- "Composer\\Command\\BumpCommand"
- );
+ shirabe_external_packages::delegate_command_trait_impls_to_inner!(base_command_data);
}
impl BaseCommand for BumpCommand {