diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-14 20:03:47 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-14 20:03:47 +0900 |
| commit | 0d6637d0400f2c50beaf6c92ff7c1c1c29a95575 (patch) | |
| tree | d7fcd014d3e21edec1515511cebfa6fa252ce3f9 /crates/shirabe-php-shim | |
| parent | 5e9de63010a3e6f4f964b758e6307e3e847c2b19 (diff) | |
| download | php-shirabe-0d6637d0400f2c50beaf6c92ff7c1c1c29a95575.tar.gz php-shirabe-0d6637d0400f2c50beaf6c92ff7c1c1c29a95575.tar.zst php-shirabe-0d6637d0400f2c50beaf6c92ff7c1c1c29a95575.zip | |
feat(port): port ScriptAliasCommand.php
Diffstat (limited to 'crates/shirabe-php-shim')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index d2dbc09..086a221 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -87,10 +87,22 @@ pub fn is_bool(value: &PhpMixed) -> bool { todo!() } +pub fn is_string(value: &PhpMixed) -> bool { + todo!() +} + pub fn empty(value: &PhpMixed) -> bool { todo!() } +pub fn method_exists(object: &PhpMixed, method_name: &str) -> bool { + todo!() +} + +pub fn get_class(object: &PhpMixed) -> String { + todo!() +} + pub fn get_debug_type(value: &PhpMixed) -> String { todo!() } |
