diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-08-07 07:15:08 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-08-07 07:15:08 +0900 |
| commit | e7f83b74e8f8c12b4a1b0f9f613387b03858dbdd (patch) | |
| tree | 37fba97742e2d16ff1494eba600da52a0aac9fcf /crates/shirabe/src/downloader/hg_downloader.rs | |
| parent | 759b2980e70dfb8960238f75d68bb6dddce25414 (diff) | |
| download | php-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/hg_downloader.rs')
| -rw-r--r-- | crates/shirabe/src/downloader/hg_downloader.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/shirabe/src/downloader/hg_downloader.rs b/crates/shirabe/src/downloader/hg_downloader.rs index 68a84535..e555ccf5 100644 --- a/crates/shirabe/src/downloader/hg_downloader.rs +++ b/crates/shirabe/src/downloader/hg_downloader.rs @@ -13,15 +13,15 @@ use crate::util::Filesystem; use crate::util::Hg as HgUtils; use crate::util::ProcessExecutor; use indexmap::IndexMap; -use shirabe_php_shim::{PhpMixed, RuntimeException}; - -shirabe_php_shim::impl_php_class!(HgDownloader, r"Composer\Downloader\HgDownloader"); +use shirabe_php_shim::{PhpMixed, RuntimeException, impl_php_class}; #[derive(Debug)] pub struct HgDownloader { inner: VcsDownloaderBase, } +impl_php_class!(HgDownloader, r"Composer\Downloader\HgDownloader"); + impl HgDownloader { pub fn new( io: std::rc::Rc<std::cell::RefCell<dyn IOInterface>>, |
