diff options
Diffstat (limited to 'crates/shirabe-php-shim/src/lib.rs')
| -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!() } |
