diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-16 15:38:58 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-16 15:38:58 +0900 |
| commit | 65f83576e4f3b901f15add9a957ce5ccac2b4280 (patch) | |
| tree | d5795f774306c8c316ad379e046267d27b7adc7e /crates/shirabe-php-shim/src/lib.rs | |
| parent | 67f7ed262214a97c85121f485cd3d76a85d49e39 (diff) | |
| download | php-shirabe-65f83576e4f3b901f15add9a957ce5ccac2b4280.tar.gz php-shirabe-65f83576e4f3b901f15add9a957ce5ccac2b4280.tar.zst php-shirabe-65f83576e4f3b901f15add9a957ce5ccac2b4280.zip | |
feat(port): port Rule.php
Diffstat (limited to 'crates/shirabe-php-shim/src/lib.rs')
| -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 114f74c..a9d18da 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -1178,6 +1178,10 @@ pub fn array_merge_recursive(arrays: Vec<PhpMixed>) -> PhpMixed { todo!() } +pub fn is_object(value: &PhpMixed) -> bool { + todo!() +} + pub const PHP_EOL: &str = "\n"; pub const PHP_INT_MAX: i64 = i64::MAX; |
