diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-15 00:38:13 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-15 02:37:37 +0900 |
| commit | 5198120875a89cb9ce45056dab20b107e2b4efd2 (patch) | |
| tree | 694424edf0b1ae92ba8073441ae61f02b22b713a /crates/shirabe-php-shim | |
| parent | b09e687aec359269d129049b04f5d4f4f3517884 (diff) | |
| download | php-shirabe-5198120875a89cb9ce45056dab20b107e2b4efd2.tar.gz php-shirabe-5198120875a89cb9ce45056dab20b107e2b4efd2.tar.zst php-shirabe-5198120875a89cb9ce45056dab20b107e2b4efd2.zip | |
feat(port): port BaseConfigCommand.php
Diffstat (limited to 'crates/shirabe-php-shim')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index 48508a4..5a77a4c 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -323,6 +323,14 @@ pub fn class_exists(name: &str) -> bool { todo!() } +pub fn touch(path: &str) -> bool { + todo!() +} + +pub fn chmod(path: &str, mode: u32) -> bool { + todo!() +} + #[derive(Debug)] pub struct RarEntry; |
