aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-17 13:59:53 +0900
committernsfisis <nsfisis@gmail.com>2026-05-17 13:59:55 +0900
commit61b446b4c1b8341e1d5735b9d4247327d1d5ebfc (patch)
tree59ba871a1be8aff6f4f9ad7829618c5399a80274
parenta9bb49c7d685dd82feaf4050f756fdf590315200 (diff)
downloadphp-shirabe-61b446b4c1b8341e1d5735b9d4247327d1d5ebfc.tar.gz
php-shirabe-61b446b4c1b8341e1d5735b9d4247327d1d5ebfc.tar.zst
php-shirabe-61b446b4c1b8341e1d5735b9d4247327d1d5ebfc.zip
fix(compile): fix infinite size types
-rw-r--r--crates/shirabe/src/event_dispatcher/event_dispatcher.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe/src/event_dispatcher/event_dispatcher.rs b/crates/shirabe/src/event_dispatcher/event_dispatcher.rs
index 6615bd9..db7860c 100644
--- a/crates/shirabe/src/event_dispatcher/event_dispatcher.rs
+++ b/crates/shirabe/src/event_dispatcher/event_dispatcher.rs
@@ -63,7 +63,7 @@ pub enum Callable {
/// `$dispatcher->dispatch(ScriptEvents::POST_INSTALL_CMD);`
#[derive(Debug)]
pub struct EventDispatcher {
- pub(crate) composer: PartialComposer,
+ pub(crate) composer: Box<PartialComposer>,
pub(crate) io: Box<dyn IOInterface>,
pub(crate) loader: Option<ClassLoader>,
pub(crate) process: ProcessExecutor,