From e7f83b74e8f8c12b4a1b0f9f613387b03858dbdd Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 7 Aug 2026 07:15:08 +0900 Subject: chore: use shirabe_php_shim::impl_php_class --- crates/shirabe/src/downloader/hg_downloader.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crates/shirabe/src/downloader/hg_downloader.rs') 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>, -- cgit v1.3.1