diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-16 21:35:39 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 21:35:39 +0900 |
| commit | 06de6b2873124a01dcfb1b9c9712c26ee871507a (patch) | |
| tree | 3cb95b612ebcb32e54d8bc6aa071102f73af9602 /crates/shirabe-php-shim | |
| parent | 593a36ac6a4987cd7fe043ef7c7cd9658819bff6 (diff) | |
| download | php-shirabe-06de6b2873124a01dcfb1b9c9712c26ee871507a.tar.gz php-shirabe-06de6b2873124a01dcfb1b9c9712c26ee871507a.tar.zst php-shirabe-06de6b2873124a01dcfb1b9c9712c26ee871507a.zip | |
feat(port): port GitHubDriver.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 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index ea417ee..8a5809a 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -812,6 +812,10 @@ pub fn get_current_user() -> String { pub const FILE_IGNORE_NEW_LINES: i64 = 2; pub const FILTER_VALIDATE_EMAIL: i64 = 274; +pub fn array_diff(array1: &[String], array2: &[String]) -> Vec<String> { + todo!() +} + pub fn array_intersect_key(array1: &IndexMap<String, Box<PhpMixed>>, array2: &IndexMap<String, Box<PhpMixed>>) -> IndexMap<String, Box<PhpMixed>> { todo!() } |
