aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/command/create_project_command.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/command/create_project_command.rs')
-rw-r--r--crates/shirabe/src/command/create_project_command.rs14
1 files changed, 8 insertions, 6 deletions
diff --git a/crates/shirabe/src/command/create_project_command.rs b/crates/shirabe/src/command/create_project_command.rs
index 3410ad8b..7312a60b 100644
--- a/crates/shirabe/src/command/create_project_command.rs
+++ b/crates/shirabe/src/command/create_project_command.rs
@@ -44,8 +44,8 @@ use shirabe_external_packages::symfony::console::output::OutputInterface;
use shirabe_external_packages::symfony::finder::Finder;
use shirabe_php_shim::{
DIRECTORY_SEPARATOR, InvalidArgumentException, PhpMixed, RuntimeException,
- UnexpectedValueException, array_pop, chdir, explode_with_limit, file_exists, getcwd, implode,
- is_dir, is_file, mkdir, realpath, rtrim, strtolower, unlink,
+ UnexpectedValueException, array_pop, chdir, explode_with_limit, file_exists, getcwd,
+ impl_php_class, implode, is_dir, is_file, mkdir, realpath, rtrim, strtolower, unlink,
};
use std::path::PathBuf;
@@ -59,6 +59,11 @@ pub struct CreateProjectCommand {
std::cell::RefCell<Option<std::rc::Rc<std::cell::RefCell<SuggestedPackagesReporter>>>>,
}
+impl_php_class!(
+ CreateProjectCommand,
+ r"Composer\Command\CreateProjectCommand"
+);
+
impl Default for CreateProjectCommand {
fn default() -> Self {
Self::new()
@@ -271,10 +276,7 @@ impl Command for CreateProjectCommand {
crate::command::base_command::base_command_complete(self, input, suggestions)
}
- shirabe_external_packages::delegate_command_trait_impls_to_inner!(
- base_command_data,
- "Composer\\Command\\CreateProjectCommand"
- );
+ shirabe_external_packages::delegate_command_trait_impls_to_inner!(base_command_data);
}
impl BaseCommand for CreateProjectCommand {