diff options
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 1a4da1c..af62fef 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -348,6 +348,10 @@ pub fn in_array(needle: PhpMixed, haystack: &PhpMixed, strict: bool) -> bool { todo!() } +pub fn realpath(path: &str) -> Option<String> { + todo!() +} + pub fn dirname(path: &str) -> String { todo!() } |
