aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-php-shim/src/output.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-php-shim/src/output.rs')
-rw-r--r--crates/shirabe-php-shim/src/output.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/crates/shirabe-php-shim/src/output.rs b/crates/shirabe-php-shim/src/output.rs
deleted file mode 100644
index d4d83200..00000000
--- a/crates/shirabe-php-shim/src/output.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-// PHP output buffering captures everything the interpreter would echo to stdout. The shim has no
-// general echo-to-buffer routing, so a buffer here would silently capture nothing.
-pub fn ob_start() -> bool {
- todo!()
-}
-
-pub fn ob_get_clean() -> Option<String> {
- todo!()
-}