diff options
Diffstat (limited to 'crates/shirabe-php-shim/src/output.rs')
| -rw-r--r-- | crates/shirabe-php-shim/src/output.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/output.rs b/crates/shirabe-php-shim/src/output.rs index 17f7ab9..698f3bf 100644 --- a/crates/shirabe-php-shim/src/output.rs +++ b/crates/shirabe-php-shim/src/output.rs @@ -1,3 +1,6 @@ +// PHP output buffering captures everything the interpreter would echo to stdout. The shim has no +// general echo-to-buffer routing, and its only producer in Composer (`phpinfo`) depends on PHP +// runtime configuration that is itself unmodeled, so a buffer here would silently capture nothing. pub fn ob_start() -> bool { todo!() } |
