diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-16 21:25:16 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 21:25:16 +0900 |
| commit | 285e4b9a3785590116fbe4fc7326ae884042da8a (patch) | |
| tree | ab64fd7eca7e398ea23ab538c12abfc1f4518904 /crates/shirabe-php-shim | |
| parent | 33d7ebd87dd6c33ac41d509ba5f34ce2a79adec0 (diff) | |
| download | php-shirabe-285e4b9a3785590116fbe4fc7326ae884042da8a.tar.gz php-shirabe-285e4b9a3785590116fbe4fc7326ae884042da8a.tar.zst php-shirabe-285e4b9a3785590116fbe4fc7326ae884042da8a.zip | |
feat(port): port GitLabDriver.php
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe-php-shim')
| -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 55f4447..af8db75 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -773,6 +773,14 @@ pub fn strtolower(s: &str) -> String { todo!() } +pub fn ctype_alnum(s: &str) -> bool { + todo!() +} + +pub fn ord(c: &str) -> i64 { + todo!() +} + pub fn array_intersect_key(array1: &IndexMap<String, Box<PhpMixed>>, array2: &IndexMap<String, Box<PhpMixed>>) -> IndexMap<String, Box<PhpMixed>> { todo!() } |
