aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/plugin/php_plugin_proxy.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/plugin/php_plugin_proxy.rs')
-rw-r--r--crates/shirabe/src/plugin/php_plugin_proxy.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/shirabe/src/plugin/php_plugin_proxy.rs b/crates/shirabe/src/plugin/php_plugin_proxy.rs
index 09867079..2b823fa5 100644
--- a/crates/shirabe/src/plugin/php_plugin_proxy.rs
+++ b/crates/shirabe/src/plugin/php_plugin_proxy.rs
@@ -90,8 +90,8 @@ pub(crate) fn io_stub_class(
} else if any.downcast_ref::<crate::io::null_io::NullIO>().is_some() {
Ok("Composer\\IO\\NullIO")
} else {
- // TODO(plugin): only the IO classes with hand-written proxy stubs can cross the
- // boundary until a stub generator exists.
+ // TODO(plugin): only IO implementations with a generated proxy stub can cross the
+ // boundary; the rest are an explicit error until stubs of their own are generated.
Err(anyhow::anyhow!(
"no proxy stub class is available for this IO implementation"
))