diff options
Diffstat (limited to 'crates/shirabe-php-shim/src/lib.rs')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 15 |
1 files changed, 15 insertions, 0 deletions
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!() + } +} |
