aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/downloader/perforce_downloader.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-08-07 07:15:08 +0900
committernsfisis <nsfisis@gmail.com>2026-08-07 07:15:08 +0900
commite7f83b74e8f8c12b4a1b0f9f613387b03858dbdd (patch)
tree37fba97742e2d16ff1494eba600da52a0aac9fcf /crates/shirabe/src/downloader/perforce_downloader.rs
parent759b2980e70dfb8960238f75d68bb6dddce25414 (diff)
downloadphp-shirabe-e7f83b74e8f8c12b4a1b0f9f613387b03858dbdd.tar.gz
php-shirabe-e7f83b74e8f8c12b4a1b0f9f613387b03858dbdd.tar.zst
php-shirabe-e7f83b74e8f8c12b4a1b0f9f613387b03858dbdd.zip
chore: use shirabe_php_shim::impl_php_class
Diffstat (limited to 'crates/shirabe/src/downloader/perforce_downloader.rs')
-rw-r--r--crates/shirabe/src/downloader/perforce_downloader.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/crates/shirabe/src/downloader/perforce_downloader.rs b/crates/shirabe/src/downloader/perforce_downloader.rs
index 74b2155b..9d4ff2a3 100644
--- a/crates/shirabe/src/downloader/perforce_downloader.rs
+++ b/crates/shirabe/src/downloader/perforce_downloader.rs
@@ -15,12 +15,7 @@ use crate::util::Perforce;
use crate::util::PerforceInterface;
use crate::util::ProcessExecutor;
use indexmap::IndexMap;
-use shirabe_php_shim::PhpMixed;
-
-shirabe_php_shim::impl_php_class!(
- PerforceDownloader,
- r"Composer\Downloader\PerforceDownloader"
-);
+use shirabe_php_shim::{PhpMixed, impl_php_class};
#[derive(Debug)]
pub struct PerforceDownloader {
@@ -28,6 +23,11 @@ pub struct PerforceDownloader {
pub(crate) perforce: std::cell::RefCell<Option<Box<dyn PerforceInterface>>>,
}
+impl_php_class!(
+ PerforceDownloader,
+ r"Composer\Downloader\PerforceDownloader"
+);
+
impl PerforceDownloader {
pub fn new(
io: std::rc::Rc<std::cell::RefCell<dyn IOInterface>>,