From e813e25cf6e41d89375e842f8abc7d6021d1cb21 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 16 May 2026 20:15:44 +0900 Subject: feat(port): port GitBitbucketDriver.php --- crates/shirabe-php-shim/src/lib.rs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'crates/shirabe-php-shim') diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index 172f7e8..db0ea45 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -809,6 +809,15 @@ pub fn json_decode(s: &str, assoc: bool) -> anyhow::Result { todo!() } +pub fn http_build_query_mixed( + data: &IndexMap, + numeric_prefix: &str, + arg_separator: &str, +) -> String { + let _ = (data, numeric_prefix, arg_separator); + todo!() +} + pub fn http_build_query(data: &[(&str, &str)], sep_str: &str, sep: &str) -> String { todo!() } @@ -829,6 +838,15 @@ pub fn strtr_array(s: &str, pairs: &IndexMap) -> String { todo!() } +pub fn array_search_mixed( + needle: &PhpMixed, + haystack: &PhpMixed, + strict: bool, +) -> Option { + let _ = (needle, haystack, strict); + todo!() +} + pub fn array_search(needle: &str, haystack: &IndexMap) -> Option { todo!() } -- cgit v1.3.1