diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-16 20:15:44 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 20:15:44 +0900 |
| commit | e813e25cf6e41d89375e842f8abc7d6021d1cb21 (patch) | |
| tree | 9b9ff7c1b6f1eddf3c0305fab430e7ea6a96ffa9 /crates/shirabe-php-shim/src | |
| parent | 73bb568e4ac3ee096c048633173bd0efd0c2214c (diff) | |
| download | php-shirabe-e813e25cf6e41d89375e842f8abc7d6021d1cb21.tar.gz php-shirabe-e813e25cf6e41d89375e842f8abc7d6021d1cb21.tar.zst php-shirabe-e813e25cf6e41d89375e842f8abc7d6021d1cb21.zip | |
feat(port): port GitBitbucketDriver.php
Diffstat (limited to 'crates/shirabe-php-shim/src')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 18 |
1 files changed, 18 insertions, 0 deletions
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<PhpMixed> { todo!() } +pub fn http_build_query_mixed( + data: &IndexMap<String, PhpMixed>, + 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, String>) -> String { todo!() } +pub fn array_search_mixed( + needle: &PhpMixed, + haystack: &PhpMixed, + strict: bool, +) -> Option<PhpMixed> { + let _ = (needle, haystack, strict); + todo!() +} + pub fn array_search(needle: &str, haystack: &IndexMap<String, String>) -> Option<String> { todo!() } |
