diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-16 15:15:50 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 15:15:50 +0900 |
| commit | a116b3ecbb37e9320ec0a49e98a5082cc50edeaf (patch) | |
| tree | 243c08e0aec6a7be6190d802d582daf85d0863b4 /crates/shirabe-php-shim/src | |
| parent | c8722b79542b50b515ea422f30dc98b5eda32f73 (diff) | |
| download | php-shirabe-a116b3ecbb37e9320ec0a49e98a5082cc50edeaf.tar.gz php-shirabe-a116b3ecbb37e9320ec0a49e98a5082cc50edeaf.tar.zst php-shirabe-a116b3ecbb37e9320ec0a49e98a5082cc50edeaf.zip | |
feat(port): port SvnDriver.php
Diffstat (limited to 'crates/shirabe-php-shim/src')
| -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 09477da..e42ac9a 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -1033,6 +1033,14 @@ pub fn array_flip(array: &PhpMixed) -> PhpMixed { todo!() } +pub fn max(a: i64, b: i64) -> i64 { + todo!() +} + +pub fn array_key_exists<V>(key: &str, array: &IndexMap<String, V>) -> bool { + todo!() +} + pub fn call_user_func_array(callback: &str, args: &PhpMixed) -> PhpMixed { todo!() } |
