From a116b3ecbb37e9320ec0a49e98a5082cc50edeaf Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 16 May 2026 15:15:50 +0900 Subject: feat(port): port SvnDriver.php --- crates/shirabe-php-shim/src/lib.rs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'crates/shirabe-php-shim/src') 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(key: &str, array: &IndexMap) -> bool { + todo!() +} + pub fn call_user_func_array(callback: &str, args: &PhpMixed) -> PhpMixed { todo!() } -- cgit v1.3.1