aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-php-shim/src/apcu.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-php-shim/src/apcu.rs')
-rw-r--r--crates/shirabe-php-shim/src/apcu.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/crates/shirabe-php-shim/src/apcu.rs b/crates/shirabe-php-shim/src/apcu.rs
deleted file mode 100644
index 699f66e..0000000
--- a/crates/shirabe-php-shim/src/apcu.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-use crate::PhpMixed;
-
-pub fn apcu_add(key: &str, var: PhpMixed) -> bool {
- let _ = (key, var);
- todo!()
-}
-
-pub fn apcu_fetch(key: &str, success: &mut bool) -> PhpMixed {
- let _ = (key, success);
- todo!()
-}