From ab445c44c84925bbcb265ceea6d8d8eddac17768 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Tue, 12 May 2026 03:24:55 +0900 Subject: feat(port): port TarDownloader.php --- crates/shirabe-php-shim/src/lib.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'crates/shirabe-php-shim') diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index 2d662d6..0533c0a 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -34,3 +34,18 @@ pub struct InvalidArgumentException { pub message: String, pub code: i64, } + +#[derive(Debug)] +pub struct PharData { + path: String, +} + +impl PharData { + pub fn new(a: String) -> Self { + todo!() + } + + pub fn extract_to(&self, a: &str, b: Option<()>, c: bool) { + todo!() + } +} -- cgit v1.3.1