diff options
Diffstat (limited to 'crates/shirabe-php-shim/src/lib.rs')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index 33b3df3..f1a9fb1 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -39,10 +39,16 @@ pub fn get_debug_type(value: &PhpMixed) -> String { todo!() } +pub fn defined(name: &str) -> bool { + todo!() +} + pub fn hash(algo: &str, data: &str) -> String { todo!() } +pub const HHVM_VERSION: Option<&str> = None; + #[derive(Debug)] pub struct Phar { path: String, |
