diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-16 21:41:15 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 22:17:14 +0900 |
| commit | 86125bc5e9c62e411b4d5bad79ed40b42e0beb96 (patch) | |
| tree | f6a101de3181ae4b993e948ca2926f6798df6783 /crates/shirabe-php-shim/src | |
| parent | 0f97875904b461900a4ad92a61e743bf7afe4929 (diff) | |
| download | php-shirabe-86125bc5e9c62e411b4d5bad79ed40b42e0beb96.tar.gz php-shirabe-86125bc5e9c62e411b4d5bad79ed40b42e0beb96.tar.zst php-shirabe-86125bc5e9c62e411b4d5bad79ed40b42e0beb96.zip | |
feat(port): port PlatformRepository.php
Diffstat (limited to 'crates/shirabe-php-shim/src')
| -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 35db21d..60f532d 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -250,6 +250,14 @@ pub fn count_mixed(value: &PhpMixed) -> i64 { todo!() } +pub fn array_slice(value: &PhpMixed, offset: i64, length: Option<i64>) -> PhpMixed { + todo!() +} + +pub fn array_slice_strs(value: &[String], offset: i64, length: Option<i64>) -> Vec<String> { + todo!() +} + pub fn empty(value: &PhpMixed) -> bool { todo!() } |
