aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/platform.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/platform.rs')
-rw-r--r--crates/shirabe/src/platform.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/crates/shirabe/src/platform.rs b/crates/shirabe/src/platform.rs
index 6abbb769..11b00e3f 100644
--- a/crates/shirabe/src/platform.rs
+++ b/crates/shirabe/src/platform.rs
@@ -1,7 +1,9 @@
+//! `Composer\Platform\Runtime` has no Rust counterpart. Its work belongs to the running PHP
+//! interpreter, so it is ported as PHP into the RPC worker (`ShirabePlatformRuntime` in
+//! `shirabe-php-rpc`), and its callers read the answers off `shirabe_php_rpc::PlatformInfo`.
+
pub mod hhvm_detector;
-pub mod runtime;
pub mod version;
pub use hhvm_detector::*;
-pub use runtime::*;
pub use version::*;